MCP Setup Guide
Give your AI tools direct access to 100+ Danish news sources. Zero install. One config block. Works immediately.
1Get your API key
Sign up and create an API key. Takes 30 seconds. The key starts with ob_live_.
2Add to your AI tool
Claude Desktop
Settings → Developer → Edit Config → paste this:
{
"mcpServers": {
"orbis-news": {
"url": "https://mcp.orbis.builders/mcp",
"headers": {
"X-API-Key": "ob_live_your_key_here"
}
}
}
}Cursor
Create this file in your project root:
// .cursor/mcp.json
{
"mcpServers": {
"orbis-news": {
"url": "https://mcp.orbis.builders/mcp",
"headers": {
"X-API-Key": "ob_live_your_key_here"
}
}
}
}Kiro
Add to your workspace or global config:
// .kiro/settings/mcp.json
{
"mcpServers": {
"orbis-news": {
"url": "https://mcp.orbis.builders/mcp",
"headers": {
"X-API-Key": "ob_live_your_key_here"
}
}
}
}ChatGPT
ChatGPT supports MCP through custom connectors:
- Go to Settings → Connected Apps → Add custom MCP connector
- Set the URL to:
https://mcp.orbis.builders/mcp - Add a header:
X-API-Keywith your API key as the value - Save, and the Orbis tools appear in your next conversation
Windsurf / Other MCP clients
Any MCP client that supports Streamable HTTP works. Use these settings:
- URL:
https://mcp.orbis.builders/mcp - Transport: Streamable HTTP (or HTTP+SSE)
- Auth header:
X-API-Key: ob_live_your_key
3Start asking
Once connected, just talk naturally. Here are some things to try:
Available Tools
These are the tools your AI can call. You don't need to know these. Just ask naturally and the AI picks the right one.
search_newsSearch articles by keyword or natural language query. Supports keyword, semantic, and hybrid modes.
Try: "Search for news about Danske Bank from the last week"
list_agentsList your monitoring agents and their status (active, paused, article counts).
Try: "Show me my monitoring agents"
create_agentCreate a keyword monitoring agent that continuously collects matching articles.
Try: "Create a monitor for articles about klimapolitik"
get_agent_articlesGet the latest articles collected by a monitoring agent.
Try: "What new articles did my Novo Nordisk monitor find?"
pause_agentPause an agent (stops collecting, preserves existing articles).
Try: "Pause my climate policy monitor"
get_articleGet full article details including cross-site coverage stats.
Try: "Get details on article 89234012"
get_threadGet all coverage of a story across different news sources.
Try: "Show me how different sites covered this story"
get_timelineTrack topic coverage over time (daily/weekly/monthly buckets).
Try: "How has Novo Nordisk coverage changed over the past month?"
list_sitesList available news sources and their current activity level.
Try: "What news sites do you have access to?"
get_usageCheck your API usage and remaining monthly quota.
Try: "How many API requests do I have left?"
Troubleshooting
"Connection failed" or "Tool not found"
Make sure the URL is exactly https://mcp.orbis.builders/mcp, no trailing slash, no extra path.
"Invalid API key"
Check your key starts with ob_live_ and is the full key (48 characters), not the truncated prefix shown in the dashboard.
"Quota exceeded"
You've hit your monthly limit. Upgrade your plan or wait for the next billing cycle.
Tools not showing up in ChatGPT
Start a new conversation after adding the connector. ChatGPT loads MCP tools at conversation start, not mid-conversation.