glim_twitter_get
ActiveTool of glim.sh
Fetch a tweet or a user from one reference. A tweet URL (incl. handle-less /i/status/<id>) returns the tweet with full thread context, parent, and optional replies/quotes; a profile URL (https://x.com/<handle>) returns the user with recent tweets. Prefer full URLs - if you only have a numeric id, pass it as a quoted string. Returns a compact human-readable view by default; pass format='json' for full structured data.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"ref"
],
"properties": {
"ref": {
"type": "string",
"description": "Tweet URL or profile URL. A tweet URL (incl. /i/status/<id>) returns the tweet + thread; a profile URL (https://x.com/<handle>) returns the user + recent tweets. Prefer full URLs - if you only have a numeric id, pass it as a quoted string."
},
"cursor": {
"type": "string",
"description": "Profile refs only: pagination cursor from next_cursor"
},
"format": {
"enum": [
"text",
"json"
],
"type": "string",
"default": "text",
"description": "Output format. 'text' (default): compact human-readable view, fewer tokens. 'json': full structured data for machine parsing."
},
"include": {
"type": "array",
"items": {
"enum": [
"replies",
"quotes"
],
"type": "string"
},
"description": "Tweet refs only: also fetch 'replies' and/or 'quotes'"
},
"expand_urls": {
"type": "boolean",
"default": false,
"description": "When true, auto-crawl entity URLs and attach crawled_content to tweets. Off by default: responses can grow by up to 4KB per expanded URL. Use glim_web_fetch(url) for targeted crawls instead."
},
"include_replies": {
"type": "boolean",
"default": false,
"description": "Profile refs only: include replies in the timeline"
},
"include_mentions": {
"type": "boolean",
"default": false,
"description": "Profile refs only: include the mentions timeline"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
glim.sh
https://github.com/glim-sh/glim-mcp
1/7 registries