@nirvana-labs/nirvana-mcp 1.30.0 → 1.31.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nirvana-labs/nirvana-mcp",
3
- "version": "1.30.0",
3
+ "version": "1.31.1",
4
4
  "description": "The official MCP Server for the Nirvana Labs API",
5
5
  "author": "Nirvana Labs <engineering@nirvanalabs.io>",
6
6
  "types": "./index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@nirvana-labs/nirvana": "^1.30.0",
21
+ "@nirvana-labs/nirvana": "^1.31.1",
22
22
  "@cloudflare/cabidela": "^0.2.4",
23
23
  "@modelcontextprotocol/sdk": "^1.24.0",
24
24
  "@valtown/deno-http-worker": "^0.0.21",
package/server.js CHANGED
@@ -15,7 +15,7 @@ const code_tool_1 = require("./code-tool.js");
15
15
  const docs_search_tool_1 = __importDefault(require("./docs-search-tool.js"));
16
16
  const newMcpServer = () => new mcp_js_1.McpServer({
17
17
  name: 'nirvana_labs_nirvana_api',
18
- version: '1.30.0',
18
+ version: '1.31.1',
19
19
  }, { capabilities: { tools: {}, logging: {} } });
20
20
  exports.newMcpServer = newMcpServer;
21
21
  // Create server instance
package/server.mjs CHANGED
@@ -6,7 +6,7 @@ import { codeTool } from "./code-tool.mjs";
6
6
  import docsSearchTool from "./docs-search-tool.mjs";
7
7
  export const newMcpServer = () => new McpServer({
8
8
  name: 'nirvana_labs_nirvana_api',
9
- version: '1.30.0',
9
+ version: '1.31.1',
10
10
  }, { capabilities: { tools: {}, logging: {} } });
11
11
  // Create server instance
12
12
  export const server = newMcpServer();
package/src/server.ts CHANGED
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
21
21
  new McpServer(
22
22
  {
23
23
  name: 'nirvana_labs_nirvana_api',
24
- version: '1.30.0',
24
+ version: '1.31.1',
25
25
  },
26
26
  { capabilities: { tools: {}, logging: {} } },
27
27
  );