aibvf-mcp 0.1.2 → 0.1.3

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 +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
7
7
  import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
8
8
  import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js';
9
9
  import { score, validate, BASE_RATES, IND_MULT, INDUSTRIES, FUNCTIONS, AI_TIERS, READINESS, BVF_VERSION, } from '@aibvf/core';
10
- const server = new Server({ name: 'io.github.Bahamas1717/aibvf-mcp', version: '0.1.2' }, { capabilities: { tools: {} } });
10
+ const server = new Server({ name: 'io.github.Bahamas1717/aibvf-mcp', version: '0.1.3' }, { capabilities: { tools: {} } });
11
11
  const scoreInputSchema = {
12
12
  type: 'object',
13
13
  required: ['industry', 'revenue_eur', 'function', 'ai_tier', 'readiness', 'scores'],
@@ -136,5 +136,5 @@ server.setRequestHandler(CallToolRequestSchema, async (req) => {
136
136
  });
137
137
  const transport = new StdioServerTransport();
138
138
  await server.connect(transport);
139
- console.error('aibvf-mcp v0.1.2 ready on stdio');
139
+ console.error('aibvf-mcp v0.1.3 ready on stdio');
140
140
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "aibvf-mcp",
3
3
  "mcpName": "io.github.Bahamas1717/aibvf-mcp",
4
- "version": "0.1.2",
5
- "description": "Score and prioritise AI initiatives as Accelerate, Fix, or Stop using AI BVF v1.0. Returns classification, modelled EUR value range, decision confidence and reasoning. Validates portfolios against the published protocol schema.",
4
+ "version": "0.1.3",
5
+ "description": "Score AI initiatives (Accelerate/Fix/Stop), model EUR value, validate portfolios. AI BVF v1.0.",
6
6
  "keywords": ["mcp", "model-context-protocol", "ai-bvf", "claude", "agent", "ai-governance"],
7
7
  "homepage": "https://bvf-app.vercel.app/protocol",
8
8
  "repository": "github:Bahamas1717/ai-bvf",