# Twitter Server

A Model Context Protocol server that allows interaction with Twitter, enabling posting tweets and searching Twitter.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add enescinar/twitter-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list enescinar/twitter-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get enescinar/twitter-mcp post_tweet

# Call a tool
npx -y @smithery/cli@latest tool call enescinar/twitter-mcp post_tweet '{}'
```

## Tools (2)

- `post_tweet` — Post a new tweet to Twitter
- `search_tweets` — Search for tweets on Twitter

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get enescinar/twitter-mcp <tool-name>
```

---

Source: https://github.com/EnesCinr/twitter-mcp | License: MIT
