Solo Knowledge Base MCP MCP Server
Structured knowledge base for Solo.io products — built for AI agents and humans.
This is a Model Context Protocol (MCP) server that exposes Solo.io product documentation, use cases, CRD schemas, changelogs, and version history as structured tools. Point your MCP client here and ask questions about the Solo stack.
Connect
Or add manually to ~/.cursor/mcp.json:
{
"mcpServers": {
"solo-knowledge-base": {
"url": "https://knowledge-base.soloio-field.com/mcp"
}
}
}
Or add manually to your VS Code settings.json under mcp.servers:
{
"mcp": {
"servers": {
"solo-knowledge-base": {
"url": "https://knowledge-base.soloio-field.com/mcp"
}
}
}
}
Run from the Claude Code CLI:
claude mcp add --transport http solo-knowledge-base https://knowledge-base.soloio-field.com/mcp
Or add manually to ~/.claude.json:
{
"mcpServers": {
"solo-knowledge-base": {
"type": "http",
"url": "https://knowledge-base.soloio-field.com/mcp"
}
}
}
Add to ~/.config/opencode/config.json:
{
"mcp": {
"solo-knowledge-base": {
"type": "remote",
"url": "https://knowledge-base.soloio-field.com/mcp",
"enabled": true
}
}
}
Add in ChatGPT Settings → Connectors → Add custom connector:
- Name: Solo Knowledge Base
- URL:
https://knowledge-base.soloio-field.com/mcp - Authentication: None
Inspect the server directly with the MCP inspector:
npx @modelcontextprotocol/inspector https://knowledge-base.soloio-field.com/mcp
Or list the available tools with a raw JSON-RPC call:
curl -sN -X POST https://knowledge-base.soloio-field.com/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"curl","version":"0"}}}'
Any MCP-compatible client can connect via Streamable HTTP:
- URL:
https://knowledge-base.soloio-field.com/mcp - Transport:
streamable-http(also supports legacy SSE at/sse) - Auth: none
Example queries
Ask your MCP-connected agent questions like these — they exercise different tools in the knowledge base.
What's the difference between kgateway OSS and Solo Enterprise for kgateway?
Write me a kgateway TrafficPolicy YAML that applies JWT auth and a 100 req/sec rate limit.
Show me how to set up ambient mode with multicluster peering in Solo Enterprise for Istio.
What changed in kgateway 2.2 compared to 2.1?
Generate an agentgateway Backend CRD that proxies an MCP server over streamable HTTP.
Which upstream Istio versions are supported by Solo Enterprise for Istio 2.12?
List every CRD kind in agentgateway 2.3 and tell me which ones are enterprise-only.
How do I build a kagent agent that uses an MCP tool server?
Products & versions
Content currently indexed in the knowledge base. Versions shown are the most recent — use get_versions for the full history.