Skip to main content

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.

Search uses modern hybrid retrieval — dense and learned sparse embeddings fused via RRF, with cross-encoder reranking — for high precision on verified, citable text units. See How search works for details.

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")

# Embed arbitrary text into Gildea's vector space
vector = client.embed("Data center capex is accelerating.")["embedding"]

Local similarity search

Pair include="embeddings" on signal detail with client.embed() to compute cosine similarity between user content and verified Gildea units, fully client-side:

import numpy as np
from gildea_sdk import Gildea

client = Gildea(api_key="gld_your_key_here")

# 1. Embed user content
user_vec = np.array(client.embed("I think infrastructure spending will slow in H2.")["embedding"])

# 2. Fetch signal with per-unit embeddings
signal = client.signals.get("0001f3a7b9c8d4e5f6a7b8c9d0e1f2a3b4c5d6e7", include="embeddings")

# 3. Find semantically related text units
def iter_units(decomp):
    for arg in decomp.get("arguments", []):
        yield from arg.get("sentences", [])
    yield from decomp.get("claims", [])
    if "thesis" in decomp:
        yield from decomp["thesis"].get("sentences", [])
    if "summary" in decomp:
        yield from decomp["summary"].get("sentences", [])

for u in iter_units(signal["decomposition"]):
    if "embedding" in u:
        sim = float(np.dot(user_vec, np.array(u["embedding"])))  # both unit-normalized
        if sim > 0.7:
            print(f"[{sim:.3f}] {u['unit']['text']}")

Embeddings are 1024-dim Cohere embed-english-v3.0 vectors. Both endpoints return vectors in the same space. See docs.gildea.ai/concepts/embeddings for details.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gildea-0.4.0.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gildea-0.4.0-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file gildea-0.4.0.tar.gz.

File metadata

  • Download URL: gildea-0.4.0.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for gildea-0.4.0.tar.gz
Algorithm Hash digest
SHA256 633f910880827e746253870fa8bf1a7dff1a8ee6e9b821459f1474e1acd51b7f
MD5 9317aa9d5f837461732c4965577855be
BLAKE2b-256 473096da2817e6719c1c602dbd8cb4a11cac2a33bca9d51752e2a66c53a42d29

See more details on using hashes here.

File details

Details for the file gildea-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: gildea-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for gildea-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 19ce83075f34350c632490203dfc1910df20496f22c0f0de6123c68473fec6ef
MD5 0a32664752a6a0a5182892bee9d270f4
BLAKE2b-256 38220541921f022fa20ddb01eed2ac1f2911947aab0cc6a3d0942518cb2db638

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page