# Does Metricool have an MCP server?

**Yes — Official.** Metricool maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Package: [`mcp-metricool`](https://pypi.org/project/mcp-metricool/) on pypi
- Category: [Marketing](https://mcpyet.com/category/marketing/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **Official package:** [`mcp-metricool`](https://pypi.org/project/mcp-metricool/) on pypi. The package page carries the exact launch arguments and required credentials.

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add metricool -- uvx mcp-metricool
```

Most servers need an API key passed as an environment variable — check the README for the exact variable names. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "metricool": {
      "command": "uvx",
      "args": [
        "mcp-metricool"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "metricool": {
      "command": "uvx",
      "args": [
        "mcp-metricool"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "metricool": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-metricool"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

PyPI package mcp-metricool published by three @metricool.com author emails. Seed NOT-YET verdict was wrong — no GitHub org repo, ships as a PyPI package.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Marketing

- [ManyChat](https://mcpyet.com/mcp/manychat.md) — Community only (Sort of)
- [Google Ads](https://mcpyet.com/mcp/google-ads.md) — Official (Yes)
- [Instantly](https://mcpyet.com/mcp/instantly.md) — Official (Yes)
- [HubSpot](https://mcpyet.com/mcp/hubspot.md) — Official (Yes)
- [AIOProductOS Inc.](https://mcpyet.com/mcp/aioproductos.md) — Official (Yes)
- [SEOcrawl AI](https://mcpyet.com/mcp/seocrawl.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/metricool/ — data refreshed 2026-08-11
