GitHub - metricool/mcp-metricool: This is a Multi-Agent Collaboration Protocol (MCP) server for interacting with the Metricool API. It allows AI agents to access and analyze social media metrics and campaign data from your Metricool account. (original) (raw)

Metricool MCP Server

This is a Model Context Protocol (MCP) server for interacting with the Metricool API. It allows AI agents to access and analyze social media metrics, campaign data and schedule posts to your Metricool account.

Setup

Prerequisites

MCP is still very new and evolving, we recommend following the MCP documentation to get the MCP basics up and running.

Configuration

  1. Configure Claude Desktop Create the following file depending on your OS:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json

On Windows: %APPDATA%/Claude/claude_desktop_config.json

Paste this template in the file and replace <METRICOOL_USER_TOKEN> and <METRICOOL_USER_ID> with your Metricool API and ID information:

{ "mcpServers": { "mcp-metricool": { "command": "uvx", "args": [ "mcp-metricool" ], "env": { "METRICOOL_USER_TOKEN": "", "METRICOOL_USER_ID": "" } } } }

Tools

The server implements several tools to interact with the Metricool API:

  1. get_brands(state: str)
    • Get the list of brands from your Metricool account.
  2. get_instagram_reels(init_date: str, end_date: str, blog_id: int)
    • Get the list of Instagram Reels from your Metricool account.
  3. get_instagram_posts(init_date: str, end_date: str, blog_id: int)
    • Get the list of Instagram Posts from your Metricool account.
  4. get_instagram_stories(init_date: str, end_date: str, blog_id: int)
    • Get the list of Instagram Stories from your Metricool account.
  5. get_tiktok_videos(init_date: str, end_date: str, blog_id: int)
    • Get the list of Tiktok Videos from your Metricool account.
  6. get_facebook_reels(init_date: str, end_date: str, blog_id: int)
    • Get the list of Facebook Reels from your Metricool account.
  7. get_facebook_posts(init_date: str, end_date: str, blog_id: int)
    • Get the list of Facebook Posts from your Metricool brand account.
  8. get_facebook_stories(init_date: str, end_date: str, blog_id: int)
    • Get the list of Facebook Stories from your Metricool brand account.
  9. get_thread_posts(init_date: str, end_date: str, blog_id: int)
    • Get the list of Threads Posts from your Metricool brand account.
  10. get_x_posts(init_date: str, end_date: str, blog_id: int)
  1. get_bluesky_posts(init_date: str, end_date: str, blog_id: int)
  1. get_linkedin_posts(init_date: str, end_date: str, blog_id: int)
  1. get_pinterest_pins(init_date: str, end_date: str, blog_id: int)
  1. get_youtube_videos(init_date: str, end_date: str, blog_id: int)
  1. get_twitch_videos(init_date: str, end_date: str, blog_id: int)
  1. get_facebookads_campaigns(init_date: str, end_date: str, blog_id: int)
  1. get_googleads_campaigns(init_date: str, end_date: str, blog_id: int)
  1. get_tiktokads_campaigns(init_date: str, end_date: str, blog_id: int)
  1. get_network_competitors
  1. post_schedule_post
  1. get_scheduled_posts
  1. get_best_time_to_post
  1. update_schedule_post
  1. get_metrics
  1. get_analytics