twitterapi-docs-mcp
v1.0.19
Published
DEPRECATED: Renamed to twitterapi-io-mcp. Compatibility wrapper for the TwitterAPI.io MCP server.
Maintainers
Readme
twitterapi-docs-mcp
This package has been renamed to
twitterapi-io-mcp.twitterapi-docs-mcpis a compatibility wrapper that delegates totwitterapi-io-mcp. It still works, but future updates and support will only be available on the new package.
Migration guide
Switching takes less than a minute. Update the package name in your MCP client config:
Claude Code
# Remove old server and add new one
claude mcp remove twitterapi-docs-mcp
claude mcp add twitterapi-io-mcp -- npx -y twitterapi-io-mcpClaude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
// Replace this:
// "twitterapi-docs-mcp": { "command": "npx", "args": ["-y", "twitterapi-docs-mcp"] }
// With this:
"twitterapi-io-mcp": {
"command": "npx",
"args": ["-y", "twitterapi-io-mcp"]
}
}
}Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Cursor
Edit .cursor/mcp.json in your project root (or global config):
{
"mcpServers": {
"twitterapi-io-mcp": {
"command": "npx",
"args": ["-y", "twitterapi-io-mcp"]
}
}
}VS Code (Copilot)
Edit .vscode/mcp.json in your project root:
{
"servers": {
"twitterapi-io-mcp": {
"command": "npx",
"args": ["-y", "twitterapi-io-mcp"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"twitterapi-io-mcp": {
"command": "npx",
"args": ["-y", "twitterapi-io-mcp"]
}
}
}Why migrate?
- Future updates will only be published to
twitterapi-io-mcp - Direct support via GitHub Issues
- No wrapper overhead - runs the server directly instead of delegating
Legacy usage (still works)
npx -y twitterapi-docs-mcpThis wrapper prints a deprecation notice to stderr and delegates to twitterapi-io-mcp.
