{
  "markdown": "# akta.pro MCP Server\n\n**Private company data & real-time news signals for AI agents.**\n\nGive your AI agent structured intelligence on 20M+ private companies plus entity-resolved, real-time news signals — via a single MCP server.\n\nakta.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.\n\n- **Server URL:** `https://mcp.akta.pro/mcp`\n- **Website:** https://akta.pro · **Docs:** https://docs.akta.pro\n- **Publisher:** Wokelo AI (https://wokelo.ai)\n- **Transport:** HTTP (streamable HTTP / SSE-compatible) — remote server, no local install\n- **Auth:** OAuth (Claude/ChatGPT web) **or** `x-api-key` header\n\n---\n\n## Overview\n\nakta.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.\n\nPoint Claude, ChatGPT, Cursor, VS Code, or Claude Code at `https://mcp.akta.pro/mcp` and your agent can:\n\n- **Resolve** any company by name, website, or UUID with patent-pending entity resolution across 20M+ global entities.\n- **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.\n- **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.\n- **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.\n\nAll 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.\n\nSOC 2 Type II certified, ISO 27001 compliant, end-to-end encrypted, and no customer data is used to train AI models.\n\n## Data coverage\n\n- 20M+ globally entity-resolved private companies\n- 70+ structured data points per company\n- 30K+ sub-sectors monitored\n- ~80% of news noise filtered before delivery\n- News classification: 77 event-type tag codes across 11 categories\n- Industry classifications supported: NAICS, SIC, IPTC, IAB\n- Location fields normalized to ISO country codes\n\n## Tools (14)\n\nAll tools are synchronous (data returned immediately, no polling). `company_data` returns Markdown; every other tool returns JSON.\n\n### Free resolve-first tools (0 credits)\n\n| Tool | Description |\n| --- | --- |\n| `company_search` | Resolve a company by name or website to akta identifiers (uuid, website, status). |\n| `industry_search` | Resolve a free-text industry/topic to ranked industry codes; used to filter news. |\n| `account_status` | Returns plan tier (is_enterprise, package_type) and remaining credit balance. |\n| `news_types` | Returns the news-type taxonomy: 77 tag codes across 11 categories. |\n\n### Company data\n\n| Tool | Description |\n| --- | --- |\n| `company_data` | Rich structured company profile as Markdown. Sections selected explicitly and billed per section. |\n| `company_data_concise` | Single condensed company overview in JSON. No section selection, flat rate, cheapest fast read. |\n\n### News\n\n| Tool | Description |\n| --- | --- |\n| `news_signals` | List news filtered by company, industry, query, or title with sentiment and AI summaries. No full article body. |\n| `news_detail` | Full article body for specific article IDs from news_signals (max 10 per call). |\n\n### Alternative signals (Subscription or Enterprise)\n\n| Tool | Description |\n| --- | --- |\n| `headcount_trends` | LinkedIn-sourced employee-count trends over time + functional breakdown. |\n| `website_traffic` | Engagement metrics, monthly visits, traffic-source breakdown. |\n| `employee_reviews` | Glassdoor-style overall + 8 dimension-level ratings, plus individual reviews. |\n| `product_reviews` | Product catalog and per-product reviews (G2, etc.). Call without a product ID first to list the catalog. |\n| `job_posts` | Live LinkedIn/Indeed job listings — title, location, description, compensation, experience level, skills. |\n| `social_posts` | Company social posts — content type, text, date, paid/repost flags, AI classification, engagement. |\n\n## Install\n\n**Server URL for every client:** `https://mcp.akta.pro/mcp`\n\n### Claude (Web / Desktop)\n\n1. Settings (or Customize) → Connectors → Add Connectors\n2. Name: `akta-pro` · Server URL: `https://mcp.akta.pro/mcp`\n3. Click Add, complete OAuth.\n\n### ChatGPT\n\n1. Settings → Plugins → Developer Mode → enable.\n2. Settings → Plugins → Browse Plugins → +.\n3. Name `akta-pro`, paste `https://mcp.akta.pro/mcp`, authentication = OAuth.\n4. Create and complete OAuth.\n\n### Claude Code\n\n```bash\nclaude mcp add --transport http akta-pro https://mcp.akta.pro/mcp \\\n  --header \"x-api-key: <YOUR_API_KEY>\"\n```\n\n### Cursor — `~/.cursor/mcp.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"akta-pro\": {\n      \"url\": \"https://mcp.akta.pro/mcp\",\n      \"headers\": { \"x-api-key\": \"YOUR_AKTA_API_KEY\" }\n    }\n  }\n}\n```\n\n### VS Code — `.vscode/mcp.json`\n\n```json\n{\n  \"servers\": {\n    \"akta-pro\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.akta.pro/mcp\",\n      \"headers\": { \"x-api-key\": \"YOUR_AKTA_API_KEY\" }\n    }\n  }\n}\n```\n\n### OpenCode — `opencode.json`\n\n```json\n{\n  \"$schema\": \"https://opencode.ai/config.json\",\n  \"mcp\": {\n    \"akta-pro\": {\n      \"type\": \"remote\",\n      \"url\": \"https://mcp.akta.pro/mcp\",\n      \"enabled\": true,\n      \"oauth\": false,\n      \"headers\": { \"x-api-key\": \"YOUR_AKTA_API_KEY\" }\n    }\n  }\n}\n```\n\n## Authentication\n\n- **OAuth** — web clients (Claude, ChatGPT).\n- **`x-api-key` header** \n- API key signup: https://playground.akta.pro/signup\n- API key management: https://playground.akta.pro/dashboard/manage/api-keys\n\n## Pricing\n\n- **Pay-as-you-go** — no minimum, credits purchased upfront, per-tool billing.\n- **Subscription** — unlocks alternative-signal tools (headcount_trends, website_traffic, employee_reviews, product_reviews, job_posts, social_posts).\n- **Enterprise** — unlocks funding_detail and mna_and_investment sections plus enterprise SLAs, bulk export, and dedicated support.\n\nFull 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\n\n## Compliance & trust\n\n- SOC 2 Type II certified\n- ISO 27001 compliant\n- End-to-end encrypted in transit and at rest\n- No customer data is used to train AI models\n- OpenAPI spec: https://docs.akta.pro/openapi.json\n- LLM-friendly docs: https://docs.akta.pro/llms.txt · https://docs.akta.pro/llms-full.txt\n\n## Links\n\n- Website: https://akta.pro\n- Documentation: https://docs.akta.pro\n- Pricing: https://akta.pro/pricing\n- Changelog: https://docs.akta.pro/changelog\n- Contact / Sales: https://docs.akta.pro/contact\n- LinkedIn: https://www.linkedin.com/company/akta-pro\n- X / Twitter: https://x.com/akta_pro\n\n---\n\n© 2026 Wokelo AI. All Rights Reserved. Commercial (proprietary). Free tier via pay-as-you-go credits.\n",
  "bytes": 7627,
  "sha": "b93159bc88d62763332ccea3b95add31724df82230e616ae1740163f978a74a1",
  "repo_slug": "akta-pro/akta.pro-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_nishitasetia_akta_pro_mcp_7b68b24c/readme"
}