https://api.gildea.ai/mcp/.
It speaks the streamable-HTTP MCP transport and auths via the x-api-key header. Most clients let you paste these two values (URL + key) and you’re done.
Claude Code
claude mcp list; you should see gildea ✓ Connected with 7 tools. To avoid hardcoding the key, use --header "x-api-key: ${env:GILDEA_API_KEY}".
Cursor
Add Gildea to~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
Other MCP clients
Any client that supports remote, streamable-HTTP MCP servers with custom headers can connect with the same two values (URL + key). Common config shape:Claude Desktop
Not supported yet. Claude Desktop’s config file does not read custom headers for remote MCP servers, and its Connectors UI accepts only OAuth, so an API-key server like Gildea cannot connect there today. Use Claude Code or Cursor for now. Claude Desktop support will follow if it adds custom-header auth (or once Gildea offers OAuth).REST API vs MCP
Both access the same data. Choose based on your use case.
Rate limits are shared across REST and MCP. A request from an MCP client and a request from your app count toward the same per-minute and monthly quota.
Available tools
The MCP server exposes 7 tools that mirror the REST API.search_text_units
Search across Gildea’s verified text units: thesis, synopsis, and argument sentences, plus atomic claims. Every unit has been verified against source evidence.
Two modes:
q: free-text search. Returns the most relevant units across the corpus.similar_to: pass a text unit ID; returns the most similar units (useful for cross-source corroboration and “find more like this”).
q or similar_to is required.
Parameters:
Example prompt: “Search for verified claims about GPU supply constraints”
list_signals
Find intelligence signals about the AI economy from 500+ expert sources. Each signal is a structured analysis or event report decomposed into verified components; use get_signal_detail to access the full tree. All filters are optional; without filters, returns the most recent signals.
Parameters:
Example prompt: “Show me recent analysis signals about OpenAI”
get_signal_detail
Get the full verified breakdown of a signal as a flat units[] list. This is where Gildea’s value lives. Each unit carries a role: thesis/synopsis (the central statement), argument (supporting analysis sentences; group by argument_id to reconstruct each as a paragraph), and claim (atomic facts). Every unit has been independently verified against source evidence, which is included by default. Use this tool liberally; it’s the difference between showing metadata and showing actual verified intelligence.
Parameters:
Example prompt: “Get the full verified breakdown of that signal”
list_entities
Discover which companies, people, and models are getting expert attention in the AI economy. Filter by trend direction, notability, coverage scale, and more. Use this for discovery: finding what’s worth paying attention to.
Parameters:
Example prompt: “Show me reliably rising entities”
get_entity_profile
Get an intelligence profile for a company, person, or model. Returns whether the entity is rising, stable, or declining in expert coverage; how much attention it’s getting relative to others; whether the trend is statistically significant; and a notability assessment. Use this to understand an entity’s trajectory before diving into specific signals.
Parameters:
Example prompt: “Show me NVIDIA’s entity profile”
Entities with fewer than 8 mentions in the 12-week window return
scale only. The direction, confidence, stability, and notability fields will be null due to insufficient data for statistical significance.get_themes
List all taxonomy themes across two axes that categorize the AI economy. Each theme includes signal counts, trend direction, and notability. Use get_theme_detail for full trend analytics and co-occurring themes.
Parameters:
Taxonomy:
- Value chain: Infrastructure, Foundation Models, Orchestration, Data & Labeling, Applications, Distribution
- Market force: Capital & Investment, Regulatory & Legal, Competitive Dynamics, Talent & Labor, Geopolitical Strategy, Trust & Societal Impact
get_theme_detail
Get a specific theme’s full trend analytics and co-occurring themes from both axes. Returns trend direction, statistical confidence, stability, notability with reasoning, and which themes from the other axis most frequently co-occur. Use this to understand how themes interconnect.
Parameters:
Example prompt: “Tell me about the Geopolitical Strategy theme”
Authentication & rate limits
The MCP server uses the same API key and rate limits as the REST API. Provide your key via thex-api-key header in your client’s MCP config (see the examples above).
Rate limits are shared: requests from MCP and REST count toward the same quota. When you exceed the limit, the tool returns an error message with the retry-after interval.
Troubleshooting
”Authentication failed”
The API key is missing, invalid, or revoked.- Check that the
x-api-keyheader is set in your MCP config - Verify the key starts with
gld_ - Check your key status at gildea.ai
”Rate limit exceeded”
You’ve hit the per-minute or monthly quota.- Check your current tier’s limits in the table above
- Wait for the retry-after interval (returned in the error message)
- Consider upgrading your tier if you consistently hit limits
Tools not appearing
- Reload your client’s MCP servers (or restart it) after editing the config
- Verify the config is valid JSON (no trailing commas) and the
x-api-keyheader is set - Confirm your key is active at gildea.ai
- Check the client’s MCP logs for connection errors. For Claude Code,
claude mcp listshows the connection status
Connection issues
- Confirm the URL is exactly
https://api.gildea.ai/mcp/ - Check the service is up:
curl https://api.gildea.ai/v1/health - Check for network/firewall issues if your client can’t reach it