> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akta.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Setup

> Complete setup guide for akta.pro MCP Server. Connect Claude Desktop, Cursor, VS Code, and other AI assistants to akta.pro company search, company data, news, and alternative signal tools.

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.

# Installation

akta.pro MCP server can be installed in any MCP client with the server URL: `https://mcp.akta.pro/mcp`

<CardGroup cols={2}>
  <Card title="Install in Cursor" icon="arrow-up-left" href="https://cursor.com/en/install-mcp?name=akta%20mcp&config=eyJ1cmwiOiJodHRwczovL21jcC5ha3RhLnByby9tY3AifQ==">
    One-click install for Cursor
  </Card>

  <Card title="Install in VS Code" icon="code" href="https://insiders.vscode.dev/redirect/mcp/install?name=akta%20mcp&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.akta.pro%2Fmcp%22%7D">
    One-click install for VS Code
  </Card>
</CardGroup>

<Tabs>
  <Tab title="Claude Web, Desktop">
    1. Open Claude and click **Settings** (or **Customize**) from the sidebar
    2. Go to **Connectors → Add Connectors**
    3. Enter the name `akta-pro` and the server URL `https://mcp.akta.pro/mcp`
    4. Click **Add**, then complete the authentication
  </Tab>

  <Tab title="ChatGPT">
    1. Go to Settings → Apps, then enable Developer Mode.
    2. Open Apps and click Create to start a new custom app.
    3. Name it "akta-pro" and paste the Server URL above, with OAuth as the authentication.
    4. Click Create and complete authentication when prompted.
  </Tab>

  <Tab title="Cursor">
    Add to `~/.cursor/mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "akta": {
          "url": "https://mcp.akta.pro/mcp",
          "headers": {
            "x-api-key": "YOUR_AKTA_API_KEY"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Add to `.vscode/mcp.json` in your project root:

    ```json theme={null}
    {
      "servers": {
        "akta": {
          "type": "http",
          "url": "https://mcp.akta.pro/mcp",
          "headers": {
            "x-api-key": "YOUR_AKTA_API_KEY"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude Code">
    Run in terminal:

    ```bash theme={null}
    claude mcp add --transport http akta https://mcp.akta.pro/mcp --header "x-api-key: <YOUR_API_KEY>"
    ```
  </Tab>

  <Tab title="OpenCode">
    Add to your `opencode.json`:

    ```json theme={null}
    {
      "mcp": {
        "akta": {
          "type": "remote",
          "url": "https://mcp.akta.pro/mcp",
          "enabled": true
        }
      }
    }
    ```
  </Tab>
</Tabs>

# API Key

<Card title="Get your Akta API key" icon="key" horizontal href="https://playground.akta.pro" />

Your key resolves to a plan tier such as **pay-as-you-go**, **subscription**, or **enterprise**,  which determines what the tools below can return. Call `account_status` at any time to check your tier and remaining credit balance.

# Resources

<Accordion title="Usage Examples" icon="magnifying-glass">
  **Company Overview**

  ```text theme={null}
  Tell me about Stripe — recent news, headcount, and product lineup.
  ```

  **Structured Company Data**

  ```text theme={null}
  Pull the firmographic and management profile for Anthropic.
  ```

  **Filtered News**

  ```text theme={null}
  Show me only M&A news on Adobe from the last quarter.
  ```

  **Alternative Signals**

  ```text theme={null}
  How has Notion's headcount trended over the past year, and what's their current hiring look like?
  ```
</Accordion>
