mcp-x
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-xwhat are the latest posts about MCP?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
What it is
mcp-x is a Model Context Protocol server written in Go. It exposes the X API v2 to any MCP-compatible client (Claude Desktop, IDE agents, custom LLM apps) as 42 tools covering posts, users, lists and media.
It authenticates with OAuth 1.0a user context, which means every call acts as a real X account — the one the four keys belong to. x_post_create publishes publicly. x_user_follow really follows. x_post_delete is irreversible. This is not a sandbox, and it is not free: see The X API costs money before you wire it into an agent.
Both transports the MCP SDK supports are available and expose the identical tool set:
stdio — the client launches the binary and talks over stdin/stdout (the default, ideal for desktop clients).
http — a long-running streamable HTTP server (useful for remote/shared deployments).
Related MCP server: X.com MCP Server
The X API costs money
There is no free tier any more. X retired the Free/Basic/Pro subscription tiers for new developers and moved to pay-per-use credits: you buy credits upfront in the Developer Console and every request deducts from the balance in real time. Legacy Basic ($200/mo) and Pro ($5,000/mo) subscriptions survive only for accounts that already had them; Enterprise starts around $42,000/mo. A new developer account today gets pay-per-use and nothing else.
Rates at the time of writing (official pricing — always re-check the Console, they have changed several times in 2026):
Operation | Price |
Post read | $0.005 per post returned |
Owned read (your own posts, bookmarks, followers, likes, lists) | $0.001 per resource |
User read | $0.010 per user returned |
Likes / mutes / blocks read | $0.001 per resource |
Followers / following read | $0.010 per resource |
Publishing a post | $0.015 per request |
Publishing a post containing a URL | $0.200 per request |
Like / repost and other interactions | $0.015 per request |
List and bookmark writes | $0.005–$0.010 per request |
Two things follow from this, and both are baked into the server:
Reads are charged per resource returned, not per request.
max_results: 100onx_posts_searchcosts twenty times whatmax_results: 5costs for the same query. Every read tool's description tells the model to ask for the smallestmax_resultsthat answers the question, and the batching tools (x_posts_lookup,x_users_lookup) tell it to batch rather than loop.x_posts_countdoes not consume the post-read budget. It returns match counts bucketed by minute/hour/day for the same query syntax. Size a topic withx_posts_countfirst, then pay forx_posts_search.
X also deduplicates: the same resource fetched twice inside a 24-hour UTC window is billed once. And pay-per-use is capped at 3 million post reads per billing cycle — past that, only Enterprise.
When the money runs out the API answers with a distinct error, and the server maps it to a message that explicitly tells the model not to retry — see Errors.
Credentials
The server needs four OAuth 1.0a values, all from one X app:
X_API_KEY
X_API_KEY_SECRET
X_ACCESS_TOKEN
X_ACCESS_TOKEN_SECRETThe first pair identifies the app; the second pair identifies the account acting through it. mcp-x uses AuthenMethodOAuth1UserContext, not app-only bearer auth, because every write endpoint and every "me" endpoint (x_users_me, x_posts_home, x_bookmarks_list, mentions) requires a user context. There is no bearer-token mode.
Getting them — and the one step everybody gets wrong
Go to developer.x.com → your project → your app.
Open User authentication settings and set App permissions to Read and Write. Do this first.
Only then go to Keys and tokens and generate the Access Token and Secret.
An access token permanently keeps the permissions the app had at the moment it was generated. If you created the token while the app was Read-only and then flipped the app to Read and Write, the token is still read-only. Nothing about the app settings page will tell you this. Every write will fail with X's oauth1-permissions problem type, forever, until you go back to Keys and tokens and regenerate the Access Token and Secret.
This is the single most common setup failure with the X API, which is why the server checks for it at startup and refuses to start with:
the access token is read-only: set the app permissions to Read and Write
in the X Developer Console, then regenerate the Access Token and SecretRegenerating the API Key/Secret is not the fix. Regenerate the Access Token and Secret.
Startup verification
Before registering a single tool, the server calls GET /2/users/me once (client.Bootstrap) with a 15-second deadline. This does three jobs:
proves the four keys are valid — bad keys fail the process, not the first tool call;
catches the read-only-token trap above;
caches the key owner's numeric user id, because every write endpoint is
POST /2/users/:id/...and looking the id up per write would be another billed request.
A failure here is fatal by design. A server that starts and then fails every call is worse than one that does not start.
The cost of that choice is worth stating plainly: there is no way to try this server without a funded X developer account. No credentials means no startup, which means no tool list — /mcp and claude mcp list will show a failed connection and nothing else. To confirm an install short of that, run the binary with -version, and read the Tools section for what it would have exposed.
Keys are secrets
The four values are credentials for a live account with write access. Keep them in a file only you can read, pass it with -env, and never commit it — .env is gitignored, .env.example is the template. When running under an MCP client, the client's env block works too; it takes precedence over the .env file.
Tools
42 tools in four groups. Every tool carries MCP annotations: readOnlyHint on reads, destructiveHint on anything irreversible (x_post_delete, x_list_delete, unlike, unrepost, unfollow, member removal). Each returns a structured JSON payload matching its output schema; the SDK mirrors the same JSON into the text content block for clients that do not read structuredContent.
Every tool accepts an optional timeout_ms, clamped into the group's [MIN, MAX] window (see Limits).
Posts — reading
Tool | Description |
| Searches recent posts for several queries in parallel. Recent search reaches back 7 days only. |
| Counts matches per query bucketed by minute/hour/day. Does not spend post reads — use it to size a topic before searching. |
| Fetches up to 100 posts by id in one call. |
| Recent posts for several usernames, fetched in parallel. |
| Posts mentioning the key owner. |
| The key owner's home timeline. |
| Posts quoting a given post. |
| Posts the key owner liked. |
| The key owner's bookmarks. |
| Users who liked a given post. |
| Users who reposted a given post. |
x_posts_search
Parameter | Type | Default | Notes |
|
| — | Required. Run in parallel, capped at |
|
|
| Posts per query, 1..100. Every one is billed. |
|
| — |
|
|
|
| How far back, 1..7. The API cannot go further. |
|
|
| When false the server appends |
|
|
| Whole-call timeout, clamped to |
Query operators go inside the query string:
Operator | Meaning |
space | AND |
| explicit OR |
| NOT |
| grouping |
| by author / by recipient |
| mentions / hashtags |
| exact phrase |
| language |
| post kind |
| attachments |
| linked domain |
| one thread |
x_posts_count
Parameter | Type | Default | Notes |
|
| — | Required. Same operators as |
|
|
|
|
|
|
| 1..7, same window. |
|
|
| Clamped to |
x_posts_lookup
Parameter | Type | Default | Notes |
|
| — | Required. 1..100 post ids. Batch them; do not call once per id. |
x_posts_by_user
Parameter | Type | Default | Notes |
|
| — | Required. Without the |
|
|
| Posts per user, 1..100. |
|
| — |
|
|
|
| 1..7. |
|
|
| Clamped to |
Timeline tools
x_posts_mentions, x_posts_home, x_posts_liked and x_bookmarks_list share one shape: max_results (1..100), pagination_token, timeout_ms. x_posts_quotes, x_post_liked_by and x_post_reposted_by add a required id.
Pagination is explicit and manual: a response carries next_token, and you pass it back as pagination_token for the next page. The server never walks pages on its own — each page is billed, so that decision stays with the caller.
Posts — writing
Tool | Annotation | Description |
| write | Publishes a post. Public and billed ($0.015, or $0.20 with a link). |
| destructive | Deletes one of your posts. Irreversible. |
| write / destructive | Like is public. |
| write / destructive | Repost is public. |
x_post_create
Parameter | Type | Notes |
|
| ≤ 280 characters. Required unless |
|
| Reply to this post. |
|
| Quote this post. |
|
| 1..4 ids from |
|
|
|
|
|
|
Publishing the same text twice in a row is rejected by X as a duplicate — the server surfaces that as a distinct message rather than a generic failure.
Users
Tool | Annotation | Description |
| read | Up to 100 usernames or 100 ids in one call — one or the other, not both. Unresolved names come back in |
| read | The profile behind the keys. |
| read | One page at a time; |
| write / destructive | Public. |
| write | A mute is silent: the other account is not told and can still see you. |
| read | The key owner's muted / blocked accounts. |
Blocking and unblocking are deliberately not exposed. Reading the block list is.
Lists
Tool | Annotation | Description |
| write | Name ≤ 25 chars, description ≤ 100. Private lists are owner-only. |
| write | Send only the fields you want changed. |
| destructive | Irreversible: list, membership and followers all go. |
| read | One list with member and follower counts. |
| read | Lists owned by a username, or by the key owner when omitted. |
| read | Recent posts from the list's members. Billed per post. |
| read | Accounts in the list, paginated. |
| write / destructive | By username. |
| write / destructive | Public lists only. |
| write / write / read | Pinned lists of the key owner. |
Media
x_media_upload
Uploads an image, GIF or video with the chunked INIT → APPEND → FINALIZE flow and returns a media_id for x_post_create.
Parameter | Type | Notes |
|
| Local file. Must sit inside |
|
| File contents instead of a path; requires |
|
| e.g. |
|
| Required. |
|
| Default |
Two things to know:
MEDIA_ROOTis a hard boundary. It is required configuration with no default, and the server refuses any path resolving outside it, symlinks included. Without it an LLM with this tool could read any file on the host and post it. Choose a dedicated directory.Video is transcoded asynchronously by X. The server polls FINALIZE status every
MEDIA_POLL_INTERVAL_MS, but a slow encode can still returnstatus: "pending". Themedia_idis valid but not yet postable — retryx_post_createshortly. Amedia_idexpires after a while and is meant for a single post.
Partial results
The fan-out tools — x_posts_search, x_posts_count, x_posts_by_user — run their inputs in parallel and return one entry per query/username, each with its own status, so one bad input does not lose the results that worked. x_posts_lookup does the same per id (not found sits next to the posts that resolved), and x_users_lookup collects unresolved names in not_found.
A call fails outright only when the input is rejected before any work starts, or when every item in it fails.
Errors
Failures come back as a tool result with isError: true and a plain-text message, not as a JSON-RPC error — the model reads the message and can correct the call itself. The messages are written for a model rather than a log reader, so the ones that must not be retried say so explicitly.
Message | Meaning |
| The read-only-token trap. |
| Usage cap hit. Nothing works until it resets. |
| Credits exhausted. They do not reset — top up in the Console. |
| Back off; do not hammer. |
| Bad or revoked keys. |
| Protected, deleted, or somebody else's. |
| Change the text. |
| Self-explanatory. |
| Transcoding failed. |
| 5 MB / 15 MB / 512 MB. |
|
|
| — |
| — |
| — |
| — |
| — |
| Validated locally, before spending a request. |
| All items failed. |
| — |
| 5xx or unclassified upstream failure. |
Classification happens in adapter/x/apierr, and it is deliberately defensive. X answers errors with Content-Type: application/problem+json, which the underlying gotwi client does not recognise as JSON — so the entire problem body lands verbatim in a message field instead of being decoded into typed fields. The mapper therefore concatenates every source the response can carry and matches problem types (oauth1-permissions, usage-capped, credits-depleted, rate-limit-exceeded, …) against that haystack, falling back to HTTP status codes when nothing matches.
Known limitations
Recent search only. 7 days back, full stop. Historical/archive search is a different (Enterprise) product and is not wired up.
Blocking is not exposed.
x_users_blockedreads the list; there is no block/unblock tool.No streaming endpoints. Filtered/sampled stream is not implemented.
No DMs.
One account per process. The keys are process-wide; the key owner is resolved once at startup. Serving several accounts means several processes.
Pagination is manual. Tools return
next_token; nothing walks pages automatically, because every page is billed.
Quick start
Install
Pick whichever fits — all of them give the identical server.
Container (no Go toolchain needed):
docker pull ghcr.io/role1776/mcp-x:0.1.1 # or :latest to track the newest releasePin an explicit version in anything you rely on. :latest moves on every stable release, and a release can add or change tool behaviour; server.json pins the same version the MCP Registry advertises.
Prebuilt binary — grab the archive for your platform from the latest release, unpack it, and put mcp-x on your PATH.
MCP Bundle — for clients that install .mcpb files, download mcp-x_<version>_<os>_<arch>.mcpb from the latest release and open it with your client. The bundle carries the compiled binary, so it needs neither Docker nor Go, and the client prompts for the five required values on install. Pick the file matching your OS and CPU architecture: a bundle holds one native binary.
Bundles built before v0.1.1 declared no configuration fields, so the client never asked for the credentials and the server exited on startup every time. Use v0.1.1 or newer.
From source (needs Go 1.26+):
git clone https://github.com/Role1776/mcp-x
cd mcp-x
make build # -> bin/mcp-xgo install also works, with one caveat worth knowing before you type it:
go install github.com/Role1776/mcp-x/app/cmd/mcp-x@latestThe Go module lives in app/, so the release tags (v0.1.0) do not name it — @v0.1.0 fails outright and @latest resolves to a pseudo-version of the newest commit on main. A go install build also reports its version as dev, because the version is stamped in by the release pipeline and not by the module. For a build that matches a release exactly, use the prebuilt binary, the container, or make build from a checked-out tag.
Configure
From a clone, or from an unpacked release archive (both ship the template):
cp .env.example .env
$EDITOR .env # fill in the four X_* keys and MEDIA_ROOTInstalling from the container or an .mcpb bundle gives you no checkout to copy from — take the template from .env.example, or skip the file entirely and pass the five values in your client's env block (below).
Five values are required; everything else has a default. MEDIA_ROOT must be an absolute path to a directory that already exists — the server checks this at startup and refuses to start otherwise, rather than failing at the first upload.
Run
./bin/mcp-x -env /absolute/path/to/.envFlag | Meaning |
| Print the version the binary reports to MCP clients, and exit. Answerable without credentials, unlike the handshake. |
| Path to a |
A successful start logs the authenticated account:
INFO authenticated with the X API op=app.Run user_id=1234567890
INFO MCP server has started op=app.Run transport=stdioConnecting an MCP client (stdio)
Claude Code — one command, credentials inline (-- separates the server's own command from the flags above it):
claude mcp add mcp-x \
-e X_API_KEY=... \
-e X_API_KEY_SECRET=... \
-e X_ACCESS_TOKEN=... \
-e X_ACCESS_TOKEN_SECRET=... \
-e MEDIA_ROOT=/absolute/path/to/media \
-- /absolute/path/to/mcp-xOr point it at a .env file instead: -- /absolute/path/to/mcp-x -env /absolute/path/to/.env. Check the result with claude mcp list, or /mcp inside a session.
Claude Desktop and other clients that take a JSON config — point them at the built binary:
{
"mcpServers": {
"x": {
"command": "/absolute/path/to/mcp-x",
"args": ["-env", "/absolute/path/to/.env"]
}
}
}Or skip the file and pass the credentials in the env block — variables already in the environment win over the .env file, so a client's env block always takes effect:
{
"mcpServers": {
"x": {
"command": "/absolute/path/to/mcp-x",
"env": {
"X_API_KEY": "...",
"X_API_KEY_SECRET": "...",
"X_ACCESS_TOKEN": "...",
"X_ACCESS_TOKEN_SECRET": "...",
"MEDIA_ROOT": "/absolute/path/to/media"
}
}
}
}Connecting an MCP client (container)
Run the image on stdio. Docker needs each variable named on the command line with -e for it to reach the process, and MEDIA_ROOT only makes sense if the directory is mounted:
{
"mcpServers": {
"x": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "X_API_KEY",
"-e", "X_API_KEY_SECRET",
"-e", "X_ACCESS_TOKEN",
"-e", "X_ACCESS_TOKEN_SECRET",
"-e", "MEDIA_ROOT",
"-v", "/host/media:/media:ro",
"ghcr.io/role1776/mcp-x:0.1.1"
],
"env": {
"X_API_KEY": "...",
"X_API_KEY_SECRET": "...",
"X_ACCESS_TOKEN": "...",
"X_ACCESS_TOKEN_SECRET": "...",
"MEDIA_ROOT": "/media"
}
}
}
}-i is required — without it the container gets no stdin and the client sees the server die immediately. Clients that install from the MCP Registry itself build this invocation themselves and prompt for the variables declared in server.json — that is a property of the client, not of every client that can talk to this server; Claude Code's CLI, for one, does not install from the registry, so use claude mcp add above.
When the client says the connection closed
Under stdio the server's stderr belongs to the client, and most clients discard it. So a configuration problem that the server explains perfectly well in one line reaches you as nothing but:
✘ Failed to connect — -32000: Connection closedRun the binary by hand with the same environment to see the real reason:
/absolute/path/to/mcp-x -env /absolute/path/to/.envIt prints exactly what is wrong — which variables are missing and where to get them, or that the keys were rejected, or that the access token is read-only — and exits. Almost every failed install is one of those three.
Running over HTTP
Set MCP_TRANSPORT=http and the server listens on SERVER_PORT at MCP_PATH (default http://localhost:8080/mcp).
The HTTP transport hasno authentication of its own. Anyone who can reach the endpoint can publish, delete and follow as your account, on your credits. Bind it to localhost or put it behind an authenticating reverse proxy — never expose it to the open internet.
Configuration
Everything is configured through environment variables, and each value is validated before startup: a missing required key, or a non-numeric or non-positive number, is a startup error naming the variable you actually set (X_API_KEY, not APIKey). Relationships between limits are not checked at startup — see Limits. Variables already present in the environment win over a .env file.
See .env.example for the full list at its default values, ready to copy to .env.
Required
Env | Notes |
| OAuth 1.0a consumer key. |
| OAuth 1.0a consumer secret. |
| User access token — generate it after setting Read and Write. |
| User access token secret. |
| Absolute path to the only directory |
Missing any of them aborts startup with the list of what is missing plus a pointer to the Developer Console.
MCP server
Env | Default | Notes |
|
|
|
|
| Server name advertised to clients. |
|
| HTTP route (http transport only). |
The version advertised to clients is not configurable: it is stamped into the binary at build time from the git tag.
HTTP server (http transport only)
Env | Default |
|
|
|
|
|
|
HTTP client
Env | Default | Notes |
|
| Connection pooling toward the X API. |
|
| Log raw |
Logging
Env | Default | Notes |
|
|
|
Limits
Each group has its own limits, so a slow media upload cannot be capped by a search timeout.
Posts
Env | Default | Notes |
|
| Queries per |
|
| Usernames per |
|
| Ids per |
|
| |
|
| |
|
| |
|
| Recent search cannot look back further. |
|
| |
|
| |
|
|
Users
Env | Default |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lists
Env | Default |
|
|
|
|
|
|
|
|
|
|
Media
Env | Default | Notes |
|
| 4 MB. The APPEND endpoint caps a segment at 5 MB. |
|
| How often FINALIZE status is polled while X transcodes. |
|
| |
|
| |
|
| 10 minutes, for large video. |
Each value is checked on its own — it must be greater than zero, and the ones the API itself bounds (*_MAX_IDS, POSTS_MAX_RESULTS, LISTS_MAX_RESULTS, POSTS_MAX_DAYS) are additionally capped at the API's ceiling so a typo cannot produce a request X will reject. The DEFAULT_*, MIN_* and MAX_* triples are not cross-checked against each other at startup. An inconsistent set does not stop the server; it is reconciled per request instead:
a value the caller omits, or passes as zero or negative, falls back to the matching
DEFAULT_*;the result is then clamped into
[MIN_*, MAX_*], so aDEFAULT_*larger than itsMAX_*simply yieldsMAX_*;if
MIN_*exceedsMAX_*, the maximum wins.
The effective limit is therefore always within the configured maximum, and misconfiguration degrades to a working server rather than a failed start. The trade-off is that it degrades silently: POSTS_MAX_RESULTS=1 instead of 10 produces no warning, only quietly smaller responses. Worth double-checking these values when results look truncated.
Architecture
The project follows a clean, layered structure. Dependencies point inward toward the domain, and each layer talks to the next through interfaces.
app/ the Go module: sources plus its build files
(Dockerfile, .dockerignore, .goreleaser.yaml)
cmd/mcp-x/main.go entry point: parse flags, load config, run app
internal/
app/ wiring + lifecycle (X client, bootstrap, run, graceful shutdown)
config/ config loading (.env → env vars → validate → env-name error messages)
domain/x/ core types and errors
posts/ users/ lists/ media/ value objects: PostID, UserID, Username, Draft, Query, Upload…
format.go shared snowflake-id and username validation
errors.go the sentinel error set the whole app maps onto
dto/x/ request/response shapes for the MCP tools, with jsonschema + validate tags
transport/mcp/ MCP layer
router/ registers every tool group on the MCP server
x/posts|users|lists|media/ tool definitions, handlers and error → tool-result mapping
usecase/x/ business logic: validation, parallelism, timeouts, limit resolution
adapter/x/ X API wiring
client/ gotwi client + startup Bootstrap (key check, key-owner id)
apierr/ X problem responses → domain errors
posts|users|lists|media/ endpoint calls and mappers to DTOs
pkg/ reusable building blocks (mcpserver, server, logger, validator, parallel)Request flow for a tool call:
MCP client → transport/mcp/x/... (handler) → usecase/x/... → adapter/x/... → gotwi → X API
↑ maps errors ↑ validates, resolves limits,
to isError text fans out, applies timeoutsTwo boundaries are worth calling out:
The domain layer refuses to construct invalid values.
NewPostID,NewUserID,NewUsername,NewDraftand friends validate on construction, so a malformed id or a 300-character post is rejected locally — before it costs a request. Ids are checked against the snowflake format and usernames against X's 1–15[A-Za-z0-9_]rule in a single sharedformatpackage.Every layer speaks the same error vocabulary. Adapters convert X's problem responses into the sentinels in
domain/x/errors.go; the transport layer is the only place that turns a sentinel into human text. That is why the same failure reads identically no matter which of the 42 tools produced it.
Development
Everything Go lives in app/, so either use the makefile from the repository root or pass -C app to the toolchain:
make build # compile the binary -> bin/mcp-x
make test # go test -v ./...
make cover # total coverage percentage
make cover-html # coverage report in the browser
make version # the version that would be stamped into the binary
go -C app build ./...
go -C app test ./...
go -C app vet ./...Mocks are generated with mockgen from the //go:generate directives next to each usecase interface:
go -C app generate ./...New code is expected to come with tests. See CONTRIBUTING.md for the full pull-request guidelines.
License
Released under the MIT License.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Related MCP Connectors
X / Twitter public post, comment, reply, user, and search tools.
X (formerly Twitter) posts, profiles, and search for AI agents. Free key, self-minted, no signup.
X (formerly Twitter): X (formerly Twitter) public and private data API for search, posts (Tweets).
X/Twitter reads, search, monitors and posting. Pay-per-call in USDC — no signup, no API keys.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables interaction with X (formerly Twitter), allowing for posting tweets, searching content, managing accounts, and organizing lists.143MIT
- FlicenseAqualityDmaintenanceModel Context Protocol server that enables LLMs to interact with X.com (formerly Twitter) through OAuth 2.0 authentication, supporting major Post-related operations including reading, writing, searching, and managing posts, likes, retweets, and bookmarks.21188-
- FlicenseNot gradedqualityDmaintenanceEnables LLM agents to interact with Twitter (X) for searching tweets, posting content with images, analyzing engagement, and extracting topics using the Twitter API.-
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to interact with X (Twitter) API v2 for posting tweets, searching, liking, retweeting, and more through natural language.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Role1776/mcp-x'
If you have feedback or need assistance with the MCP directory API, please join our Discord server