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.
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.
Enhance research and workflows with high-quality data assets your agent can call directly.
Bring useful datasets into the network so agents can discover and use them.
API keys, metering, pricing, and future HTTP 402 flows support paid data access.
The gateway is for agents. Developers connect through REST or MCP, then their agents can query trusted data assets without bespoke provider integrations.
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.
Agent builders can run the MCP server locally, or let Limex manage the hosted access layer for them.
You run the MCP server locally and Limex provides the tools, provider layer, metering primitives, and data-access interface.
Limex hosts the gateway, handles provider access, and gives your agent one stable API/MCP surface for public and paid data.
These are the data sources currently exposed through the shared REST API and MCP server.
The raw /v1/providers endpoint requires an API key.
Financial filings, company lookup, filing metadata, form filters, and official SEC links.
Crypto price and market data through CoinGecko's public API.
Future-facing company, contact, tech-stack, and property enrichment shape.
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
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"
TEST_KEY, but public
installation should use a real Limex-issued key.
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"
}
}
}
}
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()