Python client and MCP server for the Gildea AI market intelligence API
Project description
Gildea
Python client and MCP server for the Gildea AI market intelligence API.
Gildea tracks 500+ expert sources on AI, decomposes every signal into verified reasoning chains (thesis, arguments, claims, evidence), and serves it through a REST API. This package gives you a Python client and an MCP server so AI assistants can use the data directly.
Install
# Python client only
pip install gildea
# With MCP server
pip install gildea[mcp]
Quick Start
from gildea_sdk import Gildea
client = Gildea(api_key="gld_your_key_here")
# Search verified text units
results = client.search(query="data center infrastructure spending")
for hit in results["data"]:
print(hit["unit"]["text"])
print(f" Source: {hit['citation']['signal_title']} ({hit['citation']['registrable_domain']})")
# Get full signal decomposition with evidence
signal = client.signals.get("signal_id", include="evidence")
# Entity intelligence with trend analytics
entity = client.entities.get("NVIDIA")
print(f"{entity['display_name']}: {entity['direction']}, {entity['scale']} scale, {entity['notability']} notability")
# Cross-source consensus mapping
similar = client.search(similar_to="unit_id")
MCP Server
Use Gildea as a tool in Claude, ChatGPT, Cursor, VS Code, or any MCP-compatible client.
# Run directly
gildea-mcp
# Or via uvx (no install needed)
uvx --from gildea[mcp] gildea-mcp
Set your API key:
export GILDEA_API_KEY=gld_your_key_here
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"gildea": {
"command": "uvx",
"args": ["--from", "gildea[mcp]", "gildea-mcp"],
"env": {
"GILDEA_API_KEY": "gld_your_key_here"
}
}
}
}
Available MCP Tools
| Tool | Description |
|---|---|
search_text_units |
Semantic search across verified text units, or vector similarity via similar_to |
list_signals |
Browse signals by entity, theme, date, content type |
get_signal_detail |
Full decomposition: thesis, arguments, claims, evidence |
get_entity_profile |
Entity trend analytics, co-occurrence, theme distribution |
list_entities |
Discover entities by trend direction, notability, scale |
get_themes |
Theme overview across value chain and market force axes |
get_theme_detail |
Single theme trend analytics and cross-theme relationships |
API Key
Get your API key at gildea.ai. Free tier includes 5 requests/minute and 200 requests/month.
Documentation
Full API docs at docs.gildea.ai.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gildea-0.2.2.tar.gz.
File metadata
- Download URL: gildea-0.2.2.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c78e482db8e3ad7b9cf644a8c09e60bacbe934873326752554333b96837b22f8
|
|
| MD5 |
eb07e03ef7d901805bba749053d710ac
|
|
| BLAKE2b-256 |
cea3467588829e7bbf3f08dd90809ceccb74b8ed560ae9d0a341aa171c70e1d3
|
File details
Details for the file gildea-0.2.2-py3-none-any.whl.
File metadata
- Download URL: gildea-0.2.2-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be948f900d399534f4c5223a69afe50135d4ca9a6c24c6808c75dacac90c3d25
|
|
| MD5 |
136e7319ffd7082201e1b62825b163e1
|
|
| BLAKE2b-256 |
a6c40561771dd99d2f9c789c6602b78cc40ff442ea24b515686292fb797f4804
|