bimp-mcp 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ for (const tool of generatedTools) {
28
28
  }
29
29
  const utilityTools = createUtilityTools(client, toolMap);
30
30
  const nomenclaturesTools = createNomenclaturesTools(client);
31
- const server = new McpServer({ name: "bimp-mcp", version: "0.1.0" }, { capabilities: { logging: {} } });
31
+ const server = new McpServer({ name: "bimp-mcp", version: "0.2.0" }, { capabilities: { logging: {} } });
32
32
  // Register prompts via McpServer (uses Zod, type-safe)
33
33
  for (const [name, prompt] of Object.entries(PROMPT_TEXTS)) {
34
34
  server.registerPrompt(name, { description: prompt.description }, () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bimp-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP server for BIMP ERP API — ~140 tools dynamically generated from OpenAPI spec, plus planning/accounting fields and bulk operations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",