Twitter MCP Server

searchTweets

Search for tweets using a query string

Input Schema

NameRequiredDescriptionDefault
maxResultsNoMaximum number of results to return
queryYesThe search query
tweetFieldsNoFields to include in the tweet objects

Input Schema (JSON Schema)

{ "properties": { "maxResults": { "description": "Maximum number of results to return", "type": "number" }, "query": { "description": "The search query", "type": "string" }, "tweetFields": { "description": "Fields to include in the tweet objects", "items": { "type": "string" }, "type": "array" } }, "required": [ "query" ], "type": "object" }