Some checks failed
Build pitch-deck / build-and-push (push) Failing after 1m8s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 36s
CI / test-python-voice (push) Successful in 42s
CI / test-bqas (push) Successful in 40s
CI / Deploy (push) Failing after 3s
Stdio MCP server that wraps the pitch-deck admin API, exposing 11 tools: list_versions, create_version, get_version, get_table_data, update_table_data, commit_version, fork_version, diff_versions, list_investors, assign_version, invite_investor. Authenticates via PITCH_ADMIN_SECRET bearer token against the deployed pitch-deck API. All existing auth, validation, and audit logging is reused — the MCP server is a thin adapter. Usage: add to ~/.claude/settings.json mcpServers, set PITCH_API_URL and PITCH_ADMIN_SECRET env vars. See mcp-server/README.md (to be added). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
439 B
JSON
20 lines
439 B
JSON
{
|
|
"name": "breakpilot-pitch-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for managing BreakPilot pitch versions via Claude Code",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2",
|
|
"@types/node": "^22.10.2"
|
|
}
|
|
}
|