Hosted read MCP
Works from MCP clients that support Streamable HTTP. Exposes read-only policy and evidence tools.
https://pcindex.vercel.app/mcpPCIndex MCP
The website is the public terminal. The hosted MCP endpoint gives agents read access; trusted operators can run the local connector when they need evidence intake.
Recommended today
External agents can read PCIndex directly from the hosted MCP URL. Registry-changing tools stay in the configured local runtime until authentication and review controls are added.
Quick start
claude mcp add -s user -t http pcindex https://pcindex.vercel.app/mcpcodex mcp add pcindex --url https://pcindex.vercel.app/mcpCurrent setup
Works from MCP clients that support Streamable HTTP. Exposes read-only policy and evidence tools.
https://pcindex.vercel.app/mcpRuns from the repository checkout and keeps evidence intake inside the configured PCIndex runtime.
uv run --extra dev python -m pci_realtime.mcp_serverTool surface
status()readCheck registry reachability and connector readiness.
list_policies()readReturn the six tracked IRA policy units.
current_pci(code?)readRead the current PCI score for one policy or all policies.
policy_dossier(code)readRead policy events, evidence rows, and registry state.
get_evidence_trace(provision, evidence_id?)readVerify source links and evidence that entered the registry.
Manual config
Use this when your agent client accepts remote MCP server JSON.
{
"mcpServers": {
"pcindex": {
"serverUrl": "https://pcindex.vercel.app/mcp"
}
}
}Evidence intake
Use this only for trusted operators who need to submit cited evidence into the registry.
git clone https://github.com/yudduy/pci-realtime && cd pci-realtime && uv sync --extra devclaude mcp add -s user pcindex -- bash -lc "cd \"$(pwd)\" && uv run --extra dev python -m pci_realtime.mcp_server"codex mcp add pcindex -- bash -lc "cd \"$(pwd)\" && uv run --extra dev python -m pci_realtime.mcp_server"{
"mcpServers": {
"pcindex": {
"command": "bash",
"args": [
"-lc",
"cd \"$(pwd)\" && uv run --extra dev python -m pci_realtime.mcp_server"
]
}
}
}