← twitterapi.io

INDIVIDUAL MCP TOOL

get_tweet_replies

Fetch replies to a specific tweet.

twitterapi.ionone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.twitterapi.io/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_tweet_replies and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent server

twitterapi.io

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.twitterapi-mcp]
url = "https://mcp.twitterapi.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "twitterapi-mcp": {
      "type": "http",
      "url": "https://mcp.twitterapi.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: twitterapi-mcp
Remote MCP URL: https://mcp.twitterapi.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "twitterapi-mcp": {
      "url": "https://mcp.twitterapi.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "twitterapi-mcp": {
      "type": "http",
      "url": "https://mcp.twitterapi.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "twitterapi-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.twitterapi.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_tweets — 🎯 PRIMARY CHOICE for date-range / historical / keyword-based tweet queries.
  • get_user_info — Fetch basic profile info for a Twitter/X user by their screen name (handle).
  • get_user_about — Fetch the extended 'about' / profile page data for a Twitter/X user by screen name.
  • get_user_followers — Fetch followers of a Twitter/X user in reverse chronological order (newest first), each with full profile metadata (name, bio, follower count, verified status, etc.).
  • get_user_followings — Fetch the accounts a Twitter/X user follows, with full profile metadata.
  • get_user_last_tweets — ⚠️ ONLY for 'latest / recent / what's new' queries about a user.
  • get_user_mentions — Fetch tweets that mention a specific Twitter/X user (i.e.
  • get_tweets_by_ids — Batch-fetch full tweet objects by their numeric tweet IDs.