You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@agorapulse/mcp

Package Overview
Dependencies
Maintainers
51
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agorapulse/mcp

A Model Context Protocol (MCP) server that provides access to the Agorapulse API for social media management and analytics.

1.0.1
latest
npmnpm
Version published
Maintainers
51
Created
Source

Agorapulse MCP Server

A Model Context Protocol (MCP) server that provides access to the Agorapulse API for social media management and analytics.

Main Features

  • Social Profile Management: List and get details of connected social media profiles
  • Analytics Data:
    • global performance metrics,
    • content performance,
    • community management data

Available Tools

Organization Management

  • get_organizations - List accessible organizations
  • get_workspaces - List workspaces for an organization
  • get_profiles - List social media profiles in a workspace

Analytics

  • get_audience_insights - Get audience analytics for a profile (followers, demographics)
  • get_community_management_insights - Get community management metrics (replies, messages, actions)
  • get_content_insights - Get content performance analytics (posts, engagement, reach)

Prerequisites

  • Node.js 20+
  • npm
  • Agorapulse API key

Usage

With Claude Desktop

Add to your Claude Desktop configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "agorapulse": {
      "command": "npx",
      "args": ["-y", "@agorapulse/mcp"],
       "env": {
          "AGORAPULSE_API_KEY": "your-agorapulse-api-key"
       }
    }
  }
}

Local Development and Testing

  • Install dependencies:
    npm install
    
  • Build the project:
    npm run build
    
  • Test using Claude Code:
    claude mcp remove -s user "agorapulse" # Remove any previous Agorapulse MCP server definition
    claude mcp add agorapulse node ${PATH_TO_REPOSITORY}/dist/index.js --env AGORAPULSE_API_KEY="your-agorapulse-api-key"
    

Testing on preprod

claude mcp remove -s user "agorapulse" # Remove any previous Agorapulse MCP server definition
claude mcp add agorapulse node ${PATH_TO_REPOSITORY}/dist/index.js --env AGORAPULSE_API_KEY="your-agorapulse-preprod-api-key" AGORAPULSE_API_URL="https://preprod.agorapulse.com"

Keywords

mcp

FAQs

Package last updated on 12 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts