Revelata deepKPI MCP Server
oficialDatos fundamentales profundos de presentaciones ante la SEC, incluidos KPI operativos que no se encuentran en Bloomberg, diseñados para sus agentes de IA financiera.
Documentación
Servidor MCP Revelata deepKPI — Documentación
Datos fundamentales, incluidos KPIs operativos, que ni siquiera encuentras en Bloomberg — preestructurados, completamente citados y listos para agentes.
Datos fundamentales profundos para IA financiera, entregados a través de MCP
Los datos fundamentales que realmente impulsan el análisis — ventas comparables, ARPU, número de unidades, cartera de pedidos, ingresos a nivel de segmento, guías de la gerencia, desgloses no GAAP — residen en el texto, las tablas y los gráficos de los informes ante la SEC. deepKPI de Revelata extrae y preestructura exactamente esa información en series temporales de KPI, con citas a nivel de oración para cada punto de datos, para que tú y tu agente puedan confiar en las cifras.
Combinamos esto con el contexto textual subyacente y los comentarios, para que tus agentes de IA se conviertan en analistas en los que finalmente puedas confiar.
Lo que obtienes:
- 3.3 millones de series temporales de KPI específicas por empresa en empresas públicas de EE. UU. (S&P 500, 400, 600), estructuradas como series temporales consultables con más de 10 años de historial y actualizaciones diarias
- Descubrimiento de KPI en lenguaje natural y búsqueda semántica — pregunta "tráfico peatonal de Olive Garden" o "guía de capex en IA" y encuentra la métrica correcta sin conocer la redacción exacta del informe
- Informes ante la SEC (10-K, 10-Q, 8-K) convertidos a markdown con tablas, gráficos y estructura preservados — recuperables en su totalidad para que tu agente pueda citar a la gerencia textualmente
- Descubrimiento temático de empresas — búsqueda semántica en resúmenes derivados de 10-K para encontrar empresas por lo que realmente hacen, no solo por el código SIC
- Resúmenes de empresas y desgloses por segmento bajo demanda, derivados del último 10-K de cada empresa
Diseñado para agentes que necesitan estar en lo correcto.
Proporcionamos contexto confiable para tus agentes de IA financiera. Cada punto de datos de KPI devuelto incluye su unidad, escala, período y un enlace a la oración fuente exacta. Cada recuperación de informe devuelve markdown textual, para que los agentes no parafraseen hechos materiales.
Habilidades de agente también disponibles
Hay habilidades agénticas de código abierto que enseñan a los agentes cómo usar estas herramientas para flujos de trabajo comunes — análisis de estacionalidad, derivación de métricas implícitas, prueba de resistencia de informes de analistas, evaluación comparativa y más — disponibles en GitHub.
Gratis para probar.
100 créditos gratuitos al mes por usuario. Las búsquedas y listados de informes siempre son gratuitos; las llamadas de extracción y búsqueda tienen un precio por resultado. Cobertura internacional (Japón, China, Hong Kong y Singapur) disponible para clientes empresariales.
Instrucciones de configuración
Primero, crea una cuenta gratuita de Revelata — Registrarse.
Luego, sigue las instrucciones a continuación para usar el servidor con Claude Desktop, Claude.ai y clientes similares.
Nota: OpenClaw no utiliza nuestro servidor MCP; utiliza la API REST y DEEPKPI_API_KEY. Consulta skills/_common/deepkpi-api.md. Documentación de la API alojada: deepkpi-api.revelata.com/docs.
Configuración básica (Claude)
-
Copia la siguiente URL del servidor MCP
https://deepkpi-mcp.revelata.com/mcp -
Allow required capabilities — In Claude, enable Code execution and file creation by navigating to Settings → Capabilities on Claude.ai. For other clients, consult your documentation for connecting to MCP servers.
-
Add a custom connector —
Claude Desktop: Settings → Connectors → Add custom connector.
Claude.ai (web): Use Settings → Customize. -
Configure the connector — Enter Revelata deepKPI under name and paste the server URL from step 3 exactly as copied. Click 'Add'.
-
Complete OAuth — Begin a chat or task. When prompted to authenticate, sign in with your Revelata account in the browser.
-
Begin using deepKPI data in your analyses!
MCP tools
The server exposes the following tools:
query_company_id
Looks up a company’s numeric identifier from a free-text name. Returns matches you can use as company_id in the other tools. For US companies this identifier is the SEC CIK.
Parameters: company_name (string), num_of_res (optional, default 5) — max number of matches to return.
Credits: None — free.
list_kpis
Lists all KPIs available for a given company, organized by category. Use this as the first step before searching: the returned KPI names help you write precise queries for search_kpis, which saves credits.
Parameters: company_id (string), source (optional) — omit to include all filing types, or set to 10-K, 10-Q, or 8-K to filter.
Credits: None — free.
search_kpis
Semantic search over KPIs for one company — finds items most relevant to your natural-language query. Each result costs one credit (cap 15 results per call; default 3 — increase only when needed). Best practice: run list_kpis first, then search using exact KPI names from that list when possible instead of requesting many broad results.
Parameters: company_id (string), query (string), num_of_res (optional, default 3), source (optional) — same filing-type filter as list_kpis; omit to search across all filing types.
Credits: Charged per result — check your balance or add credits at AI credits.
company_summary_search
Semantic search over all companies’ 10-K-derived summaries — returns the best-matching tickers/CIKs for a natural-language query (thematic discovery: “companies that …”, “who operates in …”). 1 credit per company returned (cap 15 via top_k_companies); empty results cost nothing.
Parameters: query (string), top_k_companies (optional, default 10, max 15).
Credits: 1 per company in the response — check your balance at AI credits.
Agent workflow: the company-summary skill — use for thematic lists; for a named company’s profile use get_company_summary / get_company_segments first (Workflow A in that skill).
get_company_summary
Returns a narrative company summary (derived from the company’s latest 10-K). Primary source for “what does this company do?” — not for pulling numeric KPI time series (use search_kpis for that). May follow company_summary_search when a thematic hit needs full prose.
Parameters: company_id (string) — for US companies, the SEC CIK (same as for list_kpis / search_kpis). If you only have a name, call query_company_id first.
Credits: 3 per successful call.
Agent workflow: the company-summary skill.
get_company_segments
Returns a structured segment breakdown (derived from the company’s latest 10-K). Use for high-level segment mix and narrative structure; for detailed segment metrics over time, prefer list_kpis + search_kpis.
Parameters: company_id (string) — SEC CIK for US companies; resolve with query_company_id if needed.
Credits: 3 per successful call.
Agent workflow: the company-summary skill.
list_sec_filing_markdowns
Lists SEC filings available as markdown for a given CIK. Use this to discover valid acc_no and seq_no values before fetching content. Agent workflow: the filing skill (tool-first, before web/SEC.gov).
Parameters: cik (int), form_type (optional string, e.g. 10-K), start_date (optional YYYY-MM-DD), end_date (optional YYYY-MM-DD).
Credits: None — free.
get_sec_filing_markdown
Fetches the markdown content for a specific SEC filing.
Parameters: cik (int), acc_no (string), seq_no (optional int, default 1).
Credits: 10 per successful call.
Critical quoting rule: When the user asks “what did they say”, “what comments were made”, “exact language”, or similar, you MUST return verbatim quotes/snippets from the markdown (with clear snippet boundaries). Do not paraphrase by default. Full rules: the filing skill.
Troubleshooting
Authentication issues
| Symptom | What to try |
|---|---|
| Redirect loop or “access denied” | Confirm you’re signed into the expected Revelata account. |
| Connector works but search / summary / filing markdown calls fail | You may be out of credits. list_kpis, query_company_id, and list_sec_filing_markdowns are free. search_kpis uses 1 credit per result; company_summary_search uses 1 credit per company returned; get_company_summary and get_company_segments each use 3 credits on success; get_sec_filing_markdown uses 10 credits on success. Check your balance at AI credits. Note that all accounts receive 100 free credits each month. |
Network and TLS
- Use HTTPS only for the MCP endpoint.
- Allow outbound HTTPS to your MCP host; some corporate networks interfere with long-lived streaming — try another network to test.
- If auth hangs, try toggling VPN.
Tools don’t appear
- Restart Claude after changing the connector.
- Re-add the connector and complete OAuth again.
- Confirm your client supports remote MCP with Streamable HTTP (not only legacy SSE docs).
OpenClaw vs MCP
| Runtime | How you use deepKPI |
|---|---|
| Claude + MCP | Connector URL …/mcp, OAuth — tools query_company_id, list_kpis, search_kpis, company_summary_search, get_company_summary, get_company_segments, list_sec_filing_markdowns, get_sec_filing_markdown. |
| OpenClaw | Install revelata-deepkpi, set DEEPKPI_API_KEY, call REST per skills/_common/deepkpi-api.md. |
Do not paste the MCP URL into OpenClaw as a substitute for the REST skill flow.
Get the Agentic Skills bundle, too
Agent instructions and OpenClaw install:
curl -fsSL https://raw.githubusercontent.com/revelata/deepkpi-agents/main/install.sh | bash
Detalles: README.md.
¿Aún atascado?
- ¡Comunícate de inmediato con [email protected]!