Skip to main content
ClaudeWave

akta.pro MCP connects AI assistants to our company-intelligence stack, including company search, structured company profiles, news monitoring, and alternative signals like headcount, traffic, and reviews. ​

MCP ServersRegistry oficial0 estrellas0 forksActualizado today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/akta-pro/akta.pro-MCP
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "akta-pro-mcp": {
      "command": "node",
      "args": ["/path/to/akta.pro-MCP/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/akta-pro/akta.pro-MCP and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# akta.pro MCP Server

**Private company data & real-time news signals for AI agents.**

Give your AI agent structured intelligence on 20M+ private companies plus entity-resolved, real-time news signals — via a single MCP server.

akta.pro MCP connects Claude, ChatGPT, Cursor, VS Code, and other MCP clients to enterprise-grade private company data and real-time news signals. 20M+ entity-resolved companies, 70+ data points each, 30K+ sub-sectors monitored, and ~80% news noise filtered — pay-as-you-go.

- **Server URL:** `https://mcp.akta.pro/mcp`
- **Website:** https://akta.pro · **Docs:** https://docs.akta.pro
- **Publisher:** Wokelo AI (https://wokelo.ai)
- **Transport:** HTTP (streamable HTTP / SSE-compatible) — remote server, no local install
- **Auth:** OAuth (Claude/ChatGPT web) **or** `x-api-key` header (Cursor, VS Code, Claude Code, OpenCode, CLI)

---

## Overview

akta.pro MCP Server brings enterprise-grade private-markets intelligence into any MCP-compatible AI client. Built by Wokelo AI, akta.pro is the API-native private company data platform trusted by teams at KPMG, Adobe, Premji Invest, JLL, Chicago Booth, and others.

Point Claude, ChatGPT, Cursor, VS Code, or Claude Code at `https://mcp.akta.pro/mcp` and your agent can:

- **Resolve** any company by name, website, or UUID with patent-pending entity resolution across 20M+ global entities.
- **Enrich** private companies across 70+ structured data points — firmographics, business model, product offering, management, financials, technology stack, industry codes, and (Enterprise) funding & M&A history.
- **Monitor** company, industry, or open-ended topic news in real time with AI summaries, sentiment scores, event-type classification (77 tag codes across 11 categories), and named-entity extraction. ~80% of noise is filtered before it hits your workflow.
- **Surface alternative signals** (Subscription/Enterprise): LinkedIn headcount trends, website traffic, Glassdoor-style employee reviews, G2-style product reviews, live LinkedIn/Indeed job posts, and company social posts.

All tools are synchronous — data is returned immediately, no polling. Responses use deterministic schemas, compact payloads, and ship with source attribution so every claim is verifiable. `company_data` is billed per section, so agents only pay for what they ask for. Free resolve-first tools (`company_search`, `industry_search`, `account_status`, `news_types`) cost 0 credits.

SOC 2 Type II certified, ISO 27001 compliant, end-to-end encrypted, and no customer data is used to train AI models.

## Data coverage

- 20M+ globally entity-resolved private companies
- 70+ structured data points per company
- 30K+ sub-sectors monitored
- ~80% of news noise filtered before delivery
- News classification: 77 event-type tag codes across 11 categories
- Industry classifications supported: NAICS, SIC, IPTC, IAB
- Location fields normalized to ISO country codes

## Tools (14)

All tools are synchronous (data returned immediately, no polling). `company_data` returns Markdown; every other tool returns JSON.

### Free resolve-first tools (0 credits)

| Tool | Description |
| --- | --- |
| `company_search` | Resolve a company by name or website to akta identifiers (uuid, website, status). |
| `industry_search` | Resolve a free-text industry/topic to ranked industry codes; used to filter news. |
| `account_status` | Returns plan tier (is_enterprise, package_type) and remaining credit balance. |
| `news_types` | Returns the news-type taxonomy: 77 tag codes across 11 categories. |

### Company data

| Tool | Description |
| --- | --- |
| `company_data` | Rich structured company profile as Markdown. Sections selected explicitly and billed per section. |
| `company_data_concise` | Single condensed company overview in JSON. No section selection, flat rate, cheapest fast read. |

### News

| Tool | Description |
| --- | --- |
| `news_signals` | List news filtered by company, industry, query, or title with sentiment and AI summaries. No full article body. |
| `news_detail` | Full article body for specific article IDs from news_signals (max 10 per call). |

### Alternative signals (Subscription or Enterprise)

| Tool | Description |
| --- | --- |
| `headcount_trends` | LinkedIn-sourced employee-count trends over time + functional breakdown. |
| `website_traffic` | Engagement metrics, monthly visits, traffic-source breakdown. |
| `employee_reviews` | Glassdoor-style overall + 8 dimension-level ratings, plus individual reviews. |
| `product_reviews` | Product catalog and per-product reviews (G2, etc.). Call without a product ID first to list the catalog. |
| `job_posts` | Live LinkedIn/Indeed job listings — title, location, description, compensation, experience level, skills. |
| `social_posts` | Company social posts — content type, text, date, paid/repost flags, AI classification, engagement. |

## Install

**Server URL for every client:** `https://mcp.akta.pro/mcp`

### Claude (Web / Desktop)

1. Settings (or Customize) → Connectors → Add Connectors
2. Name: `akta-pro` · Server URL: `https://mcp.akta.pro/mcp`
3. Click Add, complete OAuth.

### ChatGPT

1. Settings → Plugins → Developer Mode → enable.
2. Settings → Plugins → Browse Plugins → +.
3. Name `akta-pro`, paste `https://mcp.akta.pro/mcp`, authentication = OAuth.
4. Create and complete OAuth.

### Claude Code

```bash
claude mcp add --transport http akta-pro https://mcp.akta.pro/mcp \
  --header "x-api-key: <YOUR_API_KEY>"
```

### Cursor — `~/.cursor/mcp.json`

```json
{
  "mcpServers": {
    "akta-pro": {
      "url": "https://mcp.akta.pro/mcp",
      "headers": { "x-api-key": "YOUR_AKTA_API_KEY" }
    }
  }
}
```

### VS Code — `.vscode/mcp.json`

```json
{
  "servers": {
    "akta-pro": {
      "type": "http",
      "url": "https://mcp.akta.pro/mcp",
      "headers": { "x-api-key": "YOUR_AKTA_API_KEY" }
    }
  }
}
```

### OpenCode — `opencode.json`

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "akta-pro": {
      "type": "remote",
      "url": "https://mcp.akta.pro/mcp",
      "enabled": true,
      "oauth": false,
      "headers": { "x-api-key": "YOUR_AKTA_API_KEY" }
    }
  }
}
```

## Authentication

- **OAuth** — web clients (Claude, ChatGPT).
- **`x-api-key` header** — CLI/IDE clients (Cursor, VS Code, Claude Code, OpenCode).
- API key signup: https://playground.akta.pro/signup
- API key management: https://playground.akta.pro/dashboard/manage/api-keys

## Pricing

- **Pay-as-you-go** — no minimum, credits purchased upfront, per-tool billing.
- **Subscription** — unlocks alternative-signal tools (headcount_trends, website_traffic, employee_reviews, product_reviews, job_posts, social_posts).
- **Enterprise** — unlocks funding_detail and mna_and_investment sections plus enterprise SLAs, bulk export, and dedicated support.

Full pricing: https://akta.pro/pricing · Rate limits: https://docs.akta.pro/getting-started/rate-limits · Error codes: https://docs.akta.pro/getting-started/error-codes

## Compliance & trust

- SOC 2 Type II certified
- ISO 27001 compliant
- End-to-end encrypted in transit and at rest
- No customer data is used to train AI models
- OpenAPI spec: https://docs.akta.pro/openapi.json
- LLM-friendly docs: https://docs.akta.pro/llms.txt · https://docs.akta.pro/llms-full.txt

## Links

- Website: https://akta.pro
- Documentation: https://docs.akta.pro
- Pricing: https://akta.pro/pricing
- Changelog: https://docs.akta.pro/changelog
- Contact / Sales: https://docs.akta.pro/contact
- LinkedIn: https://www.linkedin.com/company/akta-pro
- X / Twitter: https://x.com/akta_pro

---

© 2026 Wokelo AI. All Rights Reserved. Commercial (proprietary). Free tier via pay-as-you-go credits.

Lo que la gente pregunta sobre akta.pro-MCP

¿Qué es akta-pro/akta.pro-MCP?

+

akta-pro/akta.pro-MCP es mcp servers para el ecosistema de Claude AI. akta.pro MCP connects AI assistants to our company-intelligence stack, including company search, structured company profiles, news monitoring, and alternative signals like headcount, traffic, and reviews. ​ Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala akta.pro-MCP?

+

Puedes instalar akta.pro-MCP clonando el repositorio (https://github.com/akta-pro/akta.pro-MCP) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar akta-pro/akta.pro-MCP?

+

akta-pro/akta.pro-MCP aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene akta-pro/akta.pro-MCP?

+

akta-pro/akta.pro-MCP es mantenido por akta-pro. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a akta.pro-MCP?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega akta.pro-MCP en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: akta-pro/akta.pro-MCP
[![Featured on ClaudeWave](https://claudewave.com/api/badge/akta-pro-akta-pro-mcp)](https://claudewave.com/repo/akta-pro-akta-pro-mcp)
<a href="https://claudewave.com/repo/akta-pro-akta-pro-mcp"><img src="https://claudewave.com/api/badge/akta-pro-akta-pro-mcp" alt="Featured on ClaudeWave: akta-pro/akta.pro-MCP" width="320" height="64" /></a>

Más MCP Servers

Alternativas a akta.pro-MCP