@calypsohq/soccer-rag-mcp-server
v0.1.1
Published
Zero-config World Cup RAG MCP server for calypso-rag-agent:worldcup via the public demo MCP bearer.
Maintainers
Readme
World Cup Soccer RAG MCP
Ask an AI agent grounded questions about international soccer results, no setup ceremony required. This MCP server boots straight into a Calypso-powered World Cup demo corpus, ready for source-backed answers.
Built with Calypso. Learn more in the Calypso docs.
Kickoff
npx -y @calypsohq/soccer-rag-mcp-serverThat is it. No API key, no dashboard setup, no copy-pasting secrets. The server connects to the same World Cup RAG corpus as the RAG landing demo.
Try Asking
- Who won the 2022 World Cup final?
- Which teams has Argentina played most often?
- Show me surprising upsets in World Cup history.
- Compare Brazil and Germany across knockout matches.
- What are good starter questions for exploring the corpus?
What You Get
- Grounded answers from
calypso-rag-agent:worldcup - Citation-rich responses through the Calypso Responses API
- Handy resources like
soccer://corpus-infoandsoccer://starter-prompts - A read-only demo surface, so agents can explore safely
Claude Desktop Setup
Add this to your Claude Desktop MCP config:
{
"mcpServers": {
"world-cup-soccer-rag": {
"command": "npx",
"args": ["-y", "@calypsohq/soccer-rag-mcp-server"]
}
}
}Restart Claude Desktop, then ask Claude to use world-cup-soccer-rag for grounded soccer questions.
Bring Your Own Key
Want to use your own Calypso project with upload and bucket tools enabled?
CALYPSO_API_KEY=sk-... npx -y @calypsohq/soccer-rag-mcp-serverBYOK mode switches from the public World Cup demo into your own Calypso knowledge workspace.
For Claude Desktop BYOK mode, add an env block:
{
"mcpServers": {
"world-cup-soccer-rag": {
"command": "npx",
"args": ["-y", "@calypsohq/soccer-rag-mcp-server"],
"env": {
"CALYPSO_API_KEY": "sk-..."
}
}
}
}Development
npm install
npm test
npm run smoke:stdio