{ "server_info": { "name": "x_mcp", "description": "Server for interacting with Twitter/X through Model Context Protocol (MCP).", "repo_url": "https://github.com/vidhupv/x-mcp", "server_type": "Community Servers", "server_category": [ "Social Media" ], "server_version": "Not specified" }, "tools": [ { "name": "create_draft_tweet", "description": "Create a draft tweet", "input_schema": { "type": "object", "properties": { "content": { "type": "string", "description": "The content of the tweet" } }, "required": [ "content" ] } }, { "name": "create_draft_thread", "description": "Create a draft tweet thread", "input_schema": { "type": "object", "properties": { "contents": { "type": "array", "items": { "type": "string" }, "description": "An array of tweet contents for the thread" } }, "required": [ "contents" ] } }, { "name": "list_drafts", "description": "List all draft tweets and threads", "input_schema": { "type": "object", "properties": {}, "required": [] } }, { "name": "publish_draft", "description": "Publish a draft tweet or thread", "input_schema": { "type": "object", "properties": { "draft_id": { "type": "string", "description": "ID of the draft to publish" } }, "required": [ "draft_id" ] } }, { "name": "delete_draft", "description": "Delete a draft tweet or thread", "input_schema": { "type": "object", "properties": { "draft_id": { "type": "string", "description": "ID of the draft to delete" } }, "required": [ "draft_id" ] } } ], "resources": [], "prompts": [] }