Skip to main content
Glama

Superpowers.social

Server Details

Hosted MCP for X/Twitter and Reddit. 12 read-only tools, no API keys, free during beta.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
pkobielak/social-superpowers-mcp
GitHub Stars
0
Server Listing
social-superpowers

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.5/5 across 9 of 10 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool is uniquely distinguished by platform prefix (reddit vs twitter) and specific action (get a post, get posts, search, etc.). No two tools have overlapping purposes, even within the same platform.

Naming Consistency4/5

Tool names consistently use lowercase with underscores and a platform prefix, but the pattern is slightly mixed: Reddit tools use 'get' and 'search' as verbs, while Twitter tools include nouns like 'news', 'thread', and 'user-tweets' alongside verbs. Still, names are predictable and readable.

Tool Count5/5

With 10 tools covering two major social platforms, the count is well-scoped. Each tool serves a distinct, meaningful purpose, and no tool feels redundant or unnecessary.

Completeness3/5

The tool set provides strong read coverage for both Reddit and Twitter, including search, post/thread retrieval, and user timelines. However, it lacks any write or interaction capabilities (e.g., posting, commenting, liking), which is a notable gap for a social media server and could limit agent workflows.

Available Tools

10 tools
reddit-get-postGet Reddit PostA
Read-onlyIdempotent
Inspect

Get detailed content of a specific Reddit post with comments.

ParametersJSON Schema
NameRequiredDescriptionDefault
post_idYesReddit post ID
subredditNoSubreddit name for faster lookup
text_onlyNoIf true, return only id and title per post to save tokens.
comment_limitNoNumber of comments to return (default 10)
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds some context beyond the annotations by mentioning 'detailed content' and 'with comments', but it does not disclose behavioral traits such as response format, pagination, or the effect of parameters like text_only and comment_limit. The annotations already cover readOnly and destructive hints, so the description contributes modest extra context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence of ten words, with no unnecessary repetition or padding. It is front-loaded and effectively communicates the core purpose in an extremely concise manner.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema, the description only vaguely mentions 'detailed content' without specifying the return structure or how comments are included. However, the full parameter schema and annotations cover the input and safety aspects, making the tool minimally adequate for an agent to invoke it, though expectations about output remain unclear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides descriptions for all four parameters (post_id, subreddit, text_only, comment_limit), achieving 100% coverage. The description itself does not add meaning beyond what the schema already provides, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool retrieves a specific Reddit post and its comments, using a specific verb ('Get') and resource ('Reddit post'). It distinguishes itself from sibling tools like reddit-get-posts (plural) and reddit-search by emphasizing 'specific post' and 'comments', making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention when to prefer it over reddit-get-posts, reddit-search, or other siblings, nor does it state any prerequisites like having a post ID. Usage context is only implied by the word 'specific'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

reddit-get-postsGet Subreddit PostsB
Read-onlyIdempotent
Inspect

Get posts from a subreddit.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoSort: hot, new, top, risinghot
countNoNumber of results to return (default 10)
subredditYesSubreddit name without r/ prefix
text_onlyNoIf true, return only id and title per post to save tokens.
time_filterNoTime filter for top sort: hour, day, week, month, year, allweek
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds no behavioral context beyond the annotations. It does not mention return format, sorting behavior, pagination, or any side effects. Annotations already indicate a safe read-only operation, so there is no contradiction, but the description itself is uninformative.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that clearly communicates the tool's purpose without any wasted words. It is appropriately sized and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, and the description does not clarify what the response contains or any limitations (e.g., only returns titles, no comments). However, the tool is straightforward and the comprehensive input schema compensates for missing output details, making it adequate for a basic read-only list.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with all five parameters having descriptions. The description does not add any extra semantic detail beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'posts from a subreddit'. The 'subreddit' qualifier distinguishes it from sibling tools like reddit-get-post (single post) and reddit-get-user-posts (user posts).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance is provided on when to use this tool versus alternatives such as reddit-get-post or reddit-search. The intended use is implied only by the tool name and description, with no mention of exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

reddit-get-user-commentsReddit User CommentsB
Read-onlyIdempotent
Inspect

Get comments submitted by a specific Reddit user.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoSort: hot, new, top, controversialnew
countNoNumber of results to return (default 10)
usernameYesReddit username without u/ prefix
time_filterNoTime filter: hour, day, week, month, year, allall
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds no behavioral context beyond what annotations already declare (readOnly, idempotent, non-destructive). It simply restates the function without disclosing pagination, return format, or any potential edge cases.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that gets straight to the point. No wasted words, well-structured for an AI agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with a well-documented schema and safety annotations, the description is minimally complete. It could mention sorting or count behavior, but the lack of an output schema and the simplicity of the operation make the one-liner sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all 4 parameters with descriptions, so the description does not need to add parameter semantics. It adds no extra detail, but the baseline of 3 applies due to high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action ('Get') and resource ('comments submitted by a specific Reddit user'), which distinguishes it from sibling tools like reddit-get-user-posts and reddit-get-post. It is specific and actionable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. It does not mention contexts or exclusions, leaving the agent to infer usage from the purpose statement alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

reddit-get-user-postsReddit User PostsB
Read-onlyIdempotent
Inspect

Get posts submitted by a specific Reddit user.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoSort: hot, new, top, controversialnew
countNoNumber of results to return (default 10)
usernameYesReddit username without u/ prefix
text_onlyNoIf true, return only id and title per post to save tokens.
time_filterNoTime filter: hour, day, week, month, year, allall
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no behavioral context beyond the basic function, such as pagination, return format, rate limits, or the token-saving effect of text_only.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, immediately front-loaded with the verb and resource, and contains no filler. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool, the schema and annotations cover most operational details, and no output schema is needed. However, the description omits usage context and sibling differentiation, making it adequate but with clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each of the 5 parameters clearly described. The description itself adds no parameter meaning beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get posts submitted by a specific Reddit user' uses a clear verb and resource, and 'specific Reddit user' helps distinguish it from generic post tools. However, it does not explicitly name alternatives like reddit-get-posts or reddit-get-user-comments, so sibling differentiation is implicit rather than explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as reddit-get-posts, reddit-search, or reddit-get-user-comments. The description only states what it does, with no context, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

twitter-newsTwitter NewsB
Read-onlyIdempotent
Inspect

Get trending news from X/Twitter.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNoNumber of news items to return (default 10)
categoryNoOptional tab filter — one of: for-you, news, sports, entertainment, trending
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare the tool as read-only, idempotent, non-destructive, and open-world. The description adds little beyond the purpose; it does not disclose return format, pagination, or behavior around the count parameter. However, since annotations cover the safety profile, the description is minimally adequate but lacks deeper behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence that immediately conveys the tool's function. There is no redundant information or filler. It is highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is relatively simple with two optional parameters and no output schema. The description is adequate but does not explain what a returned 'news item' looks like or how the category filter behaves. Given the lack of output schema, a bit more detail about return values would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema documents both parameters (count and category) with full descriptions, achieving 100% coverage. The description does not add any additional meaning beyond what the schema provides, which aligns with the baseline score of 3 when schema coverage is high.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get trending news from X/Twitter.' It uses a specific verb ('Get'), a resource ('X/Twitter'), and a scope ('trending news'). While this distinguishes it from sibling tools like twitter-search or twitter-read, it does not explicitly name alternatives, so it falls short of a perfect 5 score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as twitter-search or twitter-read. The description simply states what it does, without providing context on preferred use cases or exclusions. This is a clear gap.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

twitter-readRead TweetA
Read-onlyIdempotent
Inspect

Read a single tweet by URL or ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
tweetYesTweet URL or tweet ID
text_onlyNoIf true, return only id and text to save tokens.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing this as a safe, non-mutating operation. The description adds no additional behavioral details beyond the word 'Read' and does not contradict the annotations. Missing extras like return format handling or rate limits mean it is neutral, not enhanced beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that says exactly what the tool does with no filler words or redundant details. Every word earns its place, making it an excellent example of concise and well-structured tool documentation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity of the tool (2 parameters, no output schema) and strong annotations, the description is sufficient to guide invocation. It covers the core behavior and the schema handles parameter details. It would be a 5 if it explicitly mentioned the text_only option or response shape, but those are reasonably inferable from the schema, so 4 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides 100% description coverage for both parameters: 'tweet' is described as 'Tweet URL or tweet ID' and 'text_only' includes its purpose. The description's phrase 'by URL or ID' adds no new meaning beyond the schema's parameter description, so it earns the baseline score of 3 without extra contribution.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Read'), the resource ('a single tweet'), and the input method ('by URL or ID'). This distinguishes it from sibling tools like twitter-thread, twitter-search, or twitter-user-tweets, which operate on multiple tweets or different access patterns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool: when you have a specific tweet URL or ID and need to retrieve that single tweet. It does not explicitly mention alternatives or exclusions, but the phrasing implies its scope compared to siblings that handle threads, searches, or user timelines. This is clear context without explicit alternatives, fitting a 4.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

twitter-threadRead ThreadA
Read-onlyIdempotent
Inspect

Read an entire tweet thread/conversation.

ParametersJSON Schema
NameRequiredDescriptionDefault
tweetYesTweet URL or ID of any tweet in the thread
cursorNoPagination cursor from a previous response
text_onlyNoIf true, return only id and text per tweet to save tokens.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so safety traits are known. The description adds 'entire' and 'conversation' but doesn't disclose pagination behavior, rate limits, or what exactly counts as a conversation (e.g., replies vs. quotes).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single clear sentence with no filler words. It is appropriately sized for a straightforward read operation and front-loads the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema and the existence of sibling tools, the one-line description is somewhat sparse. It doesn't mention return format, pagination behavior, or how to differentiate this from twitter-read, leaving room for interpretation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage with descriptions for all three parameters: tweet (URL/ID), cursor (pagination), and text_only (token-saving mode). The tool description adds no extra parameter semantics beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses a specific verb ('Read') and a distinct resource ('entire tweet thread/conversation'), making its purpose immediately clear. This distinguishes it from sibling tools like twitter-read (single tweet) and twitter-search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, nor any exclusions or prerequisites. The description states what the tool does but leaves the choice of tool entirely to the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

twitter-user-tweetsGet User TweetsA
Read-onlyIdempotent
Inspect

Get recent tweets from a specific X/Twitter user.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNoNumber of tweets to return (default 20)
cursorNoPagination cursor from a previous response
handleYesTwitter handle (without @)
text_onlyNoIf true, return only id and text per tweet to save tokens.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds minimal behavioral context by specifying 'recent' and 'specific user', but does not disclose details like pagination behavior, rate limits, or whether retweets are included. It provides slight scoping beyond the annotations but not rich behavioral insight.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence, front-loaded with the verb 'Get', and every word is essential. No wasted text; the structure is clear and immediately scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and benefits from strong annotations and full parameter schema, but the description is thin. It lacks details on response structure, pagination behavior, or what constitutes 'recent' (e.g., does it include retweets?). It is adequate for a basic read tool but leaves some ambiguity for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (all four parameters have descriptions), so the schema fully documents parameters. The description itself does not add any extra semantic detail about count, cursor, or text_only, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get recent tweets from a specific X/Twitter user' uses a specific verb ('Get') and a clear resource ('recent tweets from a specific X/Twitter user'). It clearly distinguishes this tool from sibling tools like twitter-search or twitter-read, which have different scopes (searching all tweets or reading a single tweet).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus alternatives, no exclusions, and no prerequisites. It simply states what the tool does, leaving the agent to infer usage without explicit comparison to sibling tools like twitter-search or twitter-thread.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    A comprehensive MCP server for X/Twitter featuring over 70 tools for research, engagement, and publishing with granular permission-based access control. It includes specialized Playwright-powered tools for fetching X articles and supports extensive account management and thread operations.
    63
    18
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Real-time X (Twitter) data platform with 2 MCP tools covering 120+ REST API endpoints. Search tweets, look up users, get timelines, extract followers/likes/retweets in bulk, monitor accounts, run giveaway draws, and perform write actions (tweet, like, retweet, follow, DM). OAuth 2.1 authentication with PKCE.
    2
    2
    694
    178
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables AI agents to semantically search and access read-only Reddit and X data through a hosted MCP server, with residential proxy crawling and no API credentials required.
  • A
    license
    -
    quality
    B
    maintenance
    Provides programmatic X (Twitter) engagement via MCP, offering 24 tools for search, timelines, notifications, bookmarks, profiles, and tweet actions through a headless browser.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.