Server data from the Official MCP Registry
Score AI initiatives (Accelerate/Fix/Stop), model EUR value, validate portfolios. AI BVF v1.0.
Score AI initiatives (Accelerate/Fix/Stop), model EUR value, validate portfolios. AI BVF v1.0.
Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
10 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-bahamas1717-aibvf-mcp": {
"args": [
"-y",
"aibvf-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Open protocol for scoring AI investments. Dual-licensed: grammar under CC-BY-4.0, code under MIT, benchmark corpus and certification marks proprietary.
| Package | Install | Purpose |
|---|---|---|
@aibvf/core | npm i @aibvf/core | JS/TS validator + scoring engine |
aibvf | pip install aibvf | Python validator + scoring engine |
aibvf-mcp | npx aibvf-mcp | MCP server: makes the scorer callable from any Claude agent |
All three ship the same scoring logic and validate against the same JSON Schema.
import { score, validate } from '@aibvf/core';
const result = score({
industry: 'manufacturing',
revenue_eur: 2_400_000_000,
function: 'supply',
ai_tier: 'gen2',
readiness: 'traditional',
scores: {
strategic_alignment: 72,
financial_return: 64,
change_enablement: 48,
governance_risk: 35,
},
});
// => { classification: 'Fix', net_low_eur: 75_600_000, net_high_eur: 247_000_000, ... }
from aibvf import score, validate
result = score(
industry='manufacturing',
revenue_eur=2_400_000_000,
function='supply',
ai_tier='gen2',
readiness='traditional',
scores={'strategic_alignment': 72, 'financial_return': 64,
'change_enablement': 48, 'governance_risk': 35},
)
Add to your MCP config:
{
"mcpServers": {
"aibvf": { "command": "npx", "args": ["-y", "aibvf-mcp"] }
}
}
Then ask Claude: "Score this AI initiative using AI BVF" and Claude will call the tool.
# JS + MCP
npm install
npm -w @aibvf/core run build
npm -w @aibvf/core publish --access public
npm -w aibvf-mcp run build
npm -w aibvf-mcp publish --access public
# Python
cd packages/py
python -m build
twine upload dist/*
bvf-protocol.schema.json is the canonical JSON Schema. The narrative specification lives at bvf-app.vercel.app/protocol.
./spec/): CC-BY-4.0Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.