profound-mcp 0.31.2 → 0.32.0

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.
package/code-tool.js CHANGED
@@ -54,7 +54,7 @@ For example:
54
54
 
55
55
  \`\`\`
56
56
  async function run(client) {
57
- const orgItems = await client.organizations.categories.list();
57
+ const categories = await client.organizations.categories.list();
58
58
  }
59
59
  \`\`\`
60
60
 
package/code-tool.mjs CHANGED
@@ -15,7 +15,7 @@ For example:
15
15
 
16
16
  \`\`\`
17
17
  async function run(client) {
18
- const orgItems = await client.organizations.categories.list();
18
+ const categories = await client.organizations.categories.list();
19
19
  }
20
20
  \`\`\`
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "profound-mcp",
3
- "version": "0.31.2",
3
+ "version": "0.32.0",
4
4
  "description": "The official MCP Server for the Profound API",
5
5
  "author": "Profound <support@tryprofound.com>",
6
6
  "types": "./index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "fix": "eslint --fix ."
28
28
  },
29
29
  "dependencies": {
30
- "profoundai": "^0.31.2",
30
+ "profoundai": "^0.32.0",
31
31
  "ajv": "^8.18.0",
32
32
  "@cloudflare/cabidela": "^0.2.4",
33
33
  "@hono/node-server": "^1.19.10",
package/server.js CHANGED
@@ -17,7 +17,7 @@ const instructions_1 = require("./instructions.js");
17
17
  const methods_1 = require("./methods.js");
18
18
  const newMcpServer = async (stainlessApiKey) => new mcp_js_1.McpServer({
19
19
  name: 'profoundai_api',
20
- version: '0.31.2',
20
+ version: '0.32.0',
21
21
  }, {
22
22
  instructions: await (0, instructions_1.getInstructions)(stainlessApiKey),
23
23
  capabilities: { tools: {}, logging: {} },
package/server.mjs CHANGED
@@ -8,7 +8,7 @@ import { getInstructions } from "./instructions.mjs";
8
8
  import { blockedMethodsForCodeTool } from "./methods.mjs";
9
9
  export const newMcpServer = async (stainlessApiKey) => new McpServer({
10
10
  name: 'profoundai_api',
11
- version: '0.31.2',
11
+ version: '0.32.0',
12
12
  }, {
13
13
  instructions: await getInstructions(stainlessApiKey),
14
14
  capabilities: { tools: {}, logging: {} },
package/src/code-tool.ts CHANGED
@@ -30,7 +30,7 @@ For example:
30
30
 
31
31
  \`\`\`
32
32
  async function run(client) {
33
- const orgItems = await client.organizations.categories.list();
33
+ const categories = await client.organizations.categories.list();
34
34
  }
35
35
  \`\`\`
36
36
 
package/src/server.ts CHANGED
@@ -20,7 +20,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
20
20
  new McpServer(
21
21
  {
22
22
  name: 'profoundai_api',
23
- version: '0.31.2',
23
+ version: '0.32.0',
24
24
  },
25
25
  {
26
26
  instructions: await getInstructions(stainlessApiKey),