Skip to main content
Xquik runs a Model Context Protocol server that lets AI agents (Claude, ChatGPT, Grok, and others) interact with your Xquik account programmatically.

Connection

SettingValue
ProtocolHTTP (StreamableHTTP)
Port3100
Base URLhttps://xquik.com:3100
Auth headerx-api-key

Authentication

The MCP server uses the same API keys as the REST API. Pass your key via the x-api-key HTTP header during the MCP handshake.

Setup

Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "xquik": {
      "url": "https://xquik.com:3100/mcp",
      "headers": {
        "x-api-key": "xq_YOUR_KEY_HERE"
      }
    }
  }
}

Available Tools

The MCP server exposes 9 tools:
ToolDescription
list-monitorsList all monitored X accounts
add-monitorStart monitoring an X account
remove-monitorStop monitoring an X account
get-eventsQuery events with filtering and pagination
get-eventGet a single event by ID
search-tweetsSearch for tweets matching a query
get-user-infoGet profile info for an X user
list-webhooksList all webhook endpoints
add-webhookRegister a new webhook endpoint
See the tools reference for detailed input/output schemas.

Example Prompts

Once connected, you can ask your AI agent things like:
  • “Monitor @elonmusk for new tweets and replies”
  • “Show me the latest events from my monitors”
  • “Search for tweets about TypeScript”
  • “How many followers does @veraborovic have?”
  • “Set up a webhook at https://my-server.com/events for new tweets”