@kadoa/mcp 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -1
package/dist/index.js CHANGED
@@ -53388,7 +53388,7 @@ function resolveApiKey3(req) {
53388
53388
  }
53389
53389
  async function startHttpServer() {
53390
53390
  const port = parseInt(process.env.PORT || "3000", 10);
53391
- const app = createMcpExpressApp();
53391
+ const app = createMcpExpressApp({ host: "0.0.0.0" });
53392
53392
  const sessions = {};
53393
53393
  const provider = new KadoaOAuthProvider;
53394
53394
  const serverUrl = process.env.MCP_SERVER_URL || `http://localhost:${port}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadoa/mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -15,6 +15,8 @@
15
15
  "README.md"
16
16
  ],
17
17
  "scripts": {
18
+ "lint": "bunx biome check",
19
+ "lint:fix": "bunx biome check --write",
18
20
  "dev": "bun src/index.ts",
19
21
  "dev:http": "MCP_HTTP=1 bun src/index.ts",
20
22
  "build": "bun build src/index.ts --outdir=dist --target=node --external express && node -e \"const f='dist/index.js';require('fs').writeFileSync(f,require('fs').readFileSync(f,'utf8').replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",