| exploreA | Search and browse the Xquik X (Twitter) API specification to discover endpoints before making live API calls with the 'xquik' tool. When to useUse 'explore' FIRST to find the right endpoint path, parameters, and response shape before calling 'xquik'. Use when the user asks what capabilities are available or how to accomplish a task on X/Twitter. Use to check whether an endpoint is included usage or requires account access.
When NOT to useBehaviorRead-only, idempotent. No network calls - runs against an in-memory catalog of 118 MCP operations. Included usage and does not require authentication. Returns the result of your filter function, such as an empty array if no endpoints match. Returns a validation error if the request function is invalid. Timeout: 60 seconds. Each EndpointInfo contains method, path, summary, category, free, parameters, and responseShape fields.
Input formatProvide a bounded request function. The server exposes spec.endpoints (EndpointInfo[]). Filter, search, or return them. ExamplesFind all included-usage endpoints: async () => spec.endpoints.filter(e => e.free)
Find by category: async () => spec.endpoints.filter(e => e.category === 'composition')
Search by keyword: async () => spec.endpoints.filter(e => e.summary.toLowerCase().includes('tweet'))
Get full details: async () => spec.endpoints.find(e => e.path === '/api/v1/x/tweets/search') |
| xquikA | Send confirmed Xquik API requests across 118 MCP operations. When to useUse after calling 'explore' to discover the endpoint path and parameters. Use for live X/Twitter operations such as tweet search, user lookup, giveaway draws, extraction jobs, composition, private reads, persistent monitors, webhooks, and confirmation-gated writes. Confirm private reads, persistent resources, metered operations, and writes before using endpoints that require user approval.
When NOT to useBehaviorProcesses the provided request function with xquik.request(path, options?) and spec.endpoints available. No filesystem or arbitrary network access - only xquik.request() is available. Timeout: 60 seconds per invocation, 60 seconds per individual API request. Read operations return JSON objects with the requested data. Mutating operations require prior user confirmation and return { success: true } or { success: true, warning: '...' }. Pagination responses include has_next_page and next_cursor. Pass cursor as a query param for the next page. Some operations modify X or Xquik resources. Show the exact payload, target, and usage estimate before calling them.
Error handling402: Account access or usage balance requires dashboard attention. Explain the account state and direct the user to the dashboard before retrying. 429: Rate limited. Retry after backoff. 404: Resource not found, such as a missing user, tweet, or monitor. 200 with warning field: Probable success - do NOT retry.
Input formatProvide a bounded request function using xquik.request(path, { method?, body?, query? }). Auth is automatic. ExamplesSearch tweets: async () => xquik.request('/api/v1/x/tweets/search', { query: { q: 'AI agents', limit: '50' } })
Get user: async () => xquik.request('/api/v1/x/users/elonmusk')
After explicit user confirmation, post tweet: async () => xquik.request('/api/v1/x/tweets', { method: 'POST', body: { account: '<confirmed_account>', text: '<confirmed_text>' } }) |