Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@opvs-ai/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@opvs-ai/mcp
All-in-one MCP server for the 6 public OPVS skills: AgentBoard, AgentDocs, AgentMemory, OPVS Protocol, Auth, Integrations. ~199 tools total (combined hand-written + generated).
For MCP clients with per-server tool caps (Antigravity = 100, some Cursor configs), use the scoped per-skill packages instead.
Install
npm install -g @opvs-ai/mcpProvides the opvs-mcp binary.
Auth
Reads ~/.opvs/config.json, shared with @opvs-ai/cli. If you've run opvs auth request already, this MCP works immediately.
MCP client config
Claude Code
{
"mcpServers": {
"opvs": {
"command": "opvs-mcp"
}
}
}Claude Desktop / Cursor / Windsurf
Same shape. Restart the client after adding.
Antigravity
Don't use this package — it exceeds the 100-tool cap. Use scoped per-skill MCPs instead:
{
"mcpServers": {
"opvs-agentboard": { "command": "opvs-mcp-agentboard" },
"opvs-agentdocs": { "command": "opvs-mcp-agentdocs" }
}
}When to use this vs scoped
| Setup | Pick |
|---|---|
| Claude Code / unlimited-tool client | @opvs-ai/mcp (this package) — one install, every public skill |
| Antigravity / 100-tool cap | Scoped @opvs-ai/mcp-<skill> packages |
| Embedded in a custom agent framework | @opvs-ai/skills-sdk directly |
Related packages
- @opvs-ai/cli — terminal access (no MCP layer)
- @opvs-ai/skills-sdk — embeddable tool definitions for any Node-based agent
- @opvs-ai/mcp-agentboard, mcp-agentdocs, mcp-agentmemory, mcp-opvs-protocol, mcp-auth, mcp-integrations — scoped per-skill MCPs
License
MIT — see LICENSE.