drio
Open app

Anthropic MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

Anthropic MCP Server is a server application designed to post tweets from X (Twitter) using a Google Sheet as a source.

To use the Anthropic MCP Server, set up a Google Sheet with your tweet content, configure the server settings, and it will automatically post the tweets to your Twitter account.

  • Automated posting of tweets from a Google Sheet - Easy configuration and setup - Supports multiple tweets and scheduling options
  1. Automating social media marketing campaigns by scheduling tweets.
  2. Posting updates or announcements directly from a Google Sheet.
  3. Managing multiple Twitter accounts with ease.

Add to your AI client

Use these steps to connect Anthropic MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "codersoumya007-anthropic-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-codersoumya007-anthropic-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

Can I use multiple Google Sheets?

Yes! You can configure the server to use multiple Google Sheets for different Twitter accounts.

Is there a limit to the number of tweets I can post?

The limit depends on Twitter's API restrictions, but the server can handle a large volume of tweets.

Do I need programming knowledge to set it up?

No, the setup process is user-friendly and does not require programming skills.