Specialized data for agents

AI is powerful. It still needs access to the right information.

Limex is an agent-facing API and MCP gateway for business, market, financial, company, and research data. Agents get one interface to query useful datasets.

For agents

Enhance research and workflows with high-quality data assets your agent can call directly.

For data providers

Bring useful datasets into the network so agents can discover and use them.

Paid access ready

API keys, metering, pricing, and future HTTP 402 flows support paid data access.

Agent side

The gateway is for agents. Developers connect through REST or MCP, then their agents can query trusted data assets without bespoke provider integrations.

Data provider side

Data owners do not use the gateway as agents. They provide high-value information assets to Limex and can get paid when agents consume that data.

Two agent access modes

Agent builders can run the MCP server locally, or let Limex manage the hosted access layer for them.

Run your own MCP

You run the MCP server locally and Limex provides the tools, provider layer, metering primitives, and data-access interface.

Managed by Limex

Limex hosts the gateway, handles provider access, and gives your agent one stable API/MCP surface for public and paid data.

Available providers

These are the data sources currently exposed through the shared REST API and MCP server. The raw /v1/providers endpoint requires an API key.

SEC EDGAR

Financial filings, company lookup, filing metadata, form filters, and official SEC links.

CoinGecko

Crypto price and market data through CoinGecko's public API.

Mock Business Data

Future-facing company, contact, tech-stack, and property enrichment shape.

Install the MCP server

Claude Code talks to Limex through a local MCP server. A public package and hosted managed setup are coming next; early access users receive the installer directly.

# Early access install
pip install limex-mcp

# Start the local MCP server
limex-mcp

Set your Limex API key

Your API key connects the local MCP server to Limex data access, metering, and billing. Early access users receive a key from Limex.

export LIMEX_API_KEY="your_limex_api_key"
The demo backend may still use TEST_KEY, but public installation should use a real Limex-issued key.

Add Limex to Claude Code

Add this MCP server entry to your Claude Code MCP configuration after installing the Limex MCP package.

{
  "mcpServers": {
    "limex": {
      "command": "limex-mcp",
      "env": {
        "LIMEX_API_KEY": "your_limex_api_key",
        "LIMEX_API_BASE_URL": "https://getlimex.com"
      }
    }
  }
}

Try these prompts

  • Use Limex to find recent SEC filings for Coinbase.
  • Use Limex to enrich Shopify using the mock business provider.
  • Use Limex to show my current usage and billing account.
  • Use Limex to get Bitcoin market data.

Available MCP tools

  • list_data_sources()
  • query_data_source(source, query, params)
  • get_crypto_price(symbol, currency)
  • search_sec_filings(company_or_ticker)
  • enrich_company_mock(company_name)
  • get_usage_summary()
  • get_billing_account()
  • get_prices()