discord-rpc-mcp
This server exposes the Discord desktop app's RPC through MCP, letting you inspect Discord state and, when control is enabled, perform actions like switching channels or adjusting audio.
Server & channel info:
get_guilds,get_guild,get_channels, andget_channel(read a channel, DM, or group DM; limited to client-loaded messages and may move the Discord view)Voice state:
get_selected_voice_channelandget_voice_settingsto check your current voice channel and audio settingsSubscribing to events:
subscribe,unsubscribe, andget_eventsto receive new messages, voice events, relationship updates, activity invites, and moreChannel/call control:
select_text_channelandselect_voice_channelto switch channels or join/leave callsAudio control:
set_voice_settingsfor your own audio andset_user_voice_settingsfor another participant's local volumeRich Presence:
set_activityto set or clear activity;send_activity_join_inviteandclose_activity_requestto handle activity join requestsDevice info:
set_certified_devicesto set device informationNote: read-only by default; mutating/control tools require
DISCORD_ALLOW_CONTROL=1and appropriate Discord authorization scopes.
Provides tools for reading and controlling Discord, including viewing servers and channels, reading messages, subscribing to events, switching channels, joining/leaving voice calls, adjusting voice settings, and managing Rich Presence.
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., "@discord-rpc-mcpWhat's the latest in the #general channel?"
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.
discord-rpc-mcp
A server that exposes the Discord desktop app's RPC through MCP. (Functionality follows Discord's RPC capabilities, so features such as searching past chats are not available.)
Ask it to read a channel, receive new messages, or turn down someone's volume in a call.
What you can do
Tools | Purpose |
| Get server and channel information |
| Read a channel, DM or group DM |
| Check your voice channel and settings |
| Subscribe to and read messages, voice events and more |
| Switch channels, join or leave a call |
| Adjust your audio settings or another participant's local volume |
| Set or clear Rich Presence |
| Accept or reject activity join requests |
| Set device information |
Related MCP server: Discord MCP Server
Get started
1. Install
Send this to an agent with terminal access, such as Codex or Claude Code:
Install discord-rpc-mcp and register it with my current MCP client using this guide:
https://github.com/ver-1000000/discord-rpc-mcp/blob/main/docs/installation.mdFor manual setup or Claude Desktop, see the installation guide.
2. Connect Discord
Complete the Discord settings below. Labels use the English interface. You can reuse an application you have already configured.
Open the Discord Developer Portal and sign in
Select
New Application> enter a name such asRPC MCP BridgeinName> review and accept the terms >CreateIn the left menu, select
OAuth2>Redirects>Add Redirect> enterhttp://127.0.0.1:8765/callback>Save ChangesOn the same
OAuth2page, selectClient ID>Copy, then paste it afterDISCORD_CLIENT_ID=in the local.envfile indicated by your agentCopy
Client Secret, paste it afterDISCORD_CLIENT_SECRET=in the same file, and saveFor a new application without an available secret, use
Reset Secretand complete any identity verification requestedResetting an existing application's secret also requires updating any other integrations using it
Start the Discord desktop app on your computer and tell your agent that the configuration is saved and it can continue connecting
When Discord shows an authorization prompt, check the application name and requested permissions, then approve
Enter the secret in the local .env file, not in chat. For manual login commands, see the installation guide.
Configuration · Development · Discord RPC access requirements
Notes
Only reading is enabled by default. To change volume, switch channels or perform other actions, set
DISCORD_ALLOW_CONTROL=1in.env. See the configuration guide for the required authorization scopesMessages are limited to what Discord has loaded. Full-history search and normal message sending, editing and deletion are not supported
Reading messages may move the Discord view
Retrieved content may be sent to your AI service
Not affiliated with Discord
License
Available Tools
9 toolsget_channelA
Read a known channel, DM or group DM. Only the client-loaded message window is available; this can move the Discord view. It is not full history or server-side search.
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important side effects and limitations beyond the annotations: it can move the Discord view, only the client-loaded message window is available, and it is not full history or server-side search. This is valuable context given that readOnlyHint is false and idempotentHint is false.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose, and every sentence adds essential information. There is no filler or repetition of schema/annotation data.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter, no output schema, and the annotations already provided, the description covers purpose, scope, side effects, and limitations. An agent has enough information to decide when to call it and what to expect from the call.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does convey that the single parameter identifies a known channel, DM, or group DM, but it doesn't elaborate on how channel_id maps to those resource types or add meaningful detail beyond the schema's name and pattern.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Read'), a specific resource ('a known channel, DM or group DM'), and key scoping details. It is clearly distinguishable from sibling tools like get_channels, get_guild, and get_selected_voice_channel without needing to open schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates this tool is for reading an already-known channel/DM/group DM, not for searching or retrieving full history. It explicitly says it is not server-side search, which helps an agent avoid misusing it, though it doesn't name an alternative tool for full-history search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_channelsARead-onlyIdempotent
List channel metadata for a guild.
| Name | Required | Description | Default |
|---|---|---|---|
| guild_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description carries less burden here. It adds guild scoping, which is consistent with annotations, but does not disclose pagination, ordering, permission requirements, or exact metadata fields returned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short, front-loaded sentence with no filler or repetition. It communicates the core operation immediately and earns high marks for conciseness, even though more behavioral detail could have been added.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter, annotation-rich read-only tool, the description is minimally sufficient: it identifies the resource, scope, and list-like return. However, it leaves return-field specifics and alternative routing to the agent's inference, so it is not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should compensate. 'For a guild' loosely maps to guild_id, but the meaning is already carried by the parameter name and pattern. No additional format, optionality, or behavior details are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action ('List'), a concrete resource ('channel metadata'), and a clear scope ('for a guild'). The plural 'channels' and guild scope distinguish it from siblings like get_channel and get_guild, even without naming them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'for a guild' phrase implies the intended context, but the description gives no explicit when-to-use guidance, no exclusions, and no mention of alternatives such as get_channel for a single channel. Usage is inferable rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_eventsARead-onlyIdempotent
Read the bounded in-memory event buffer. Pass nextCursor as after on subsequent calls. Does not connect to Discord or fetch historical messages.
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | ||
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: the buffer is bounded and in-memory, there is no network/Discord access, and the tool supports cursor-based pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences front-load the core action, then provide pagination guidance and a clear boundary of what the tool does not do. There is no filler or redundant restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple cursor-based read tool: it explains what is read, how to paginate, and what is out of scope. It does not explicitly describe the response shape or name the response field that carries nextCursor, but this is a minor gap given the lack of an output schema and the bounded-buffer simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description clarifies that `after` represents a cursor value (`nextCursor`), which the bare numeric schema does not convey. `limit` is not explicitly described, but its default, minimum, and maximum are present in the schema and its purpose is reasonably inferable from the pagination context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names an exact action and resource: 'read the bounded in-memory event buffer.' It also explicitly distinguishes itself from Discord/historical fetching, making it clear how this tool differs from the sibling get_* tools that access guilds, channels, or voice settings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives a concrete usage pattern: 'Pass nextCursor as after on subsequent calls' for pagination. It also states exclusions ('does not connect to Discord or fetch historical messages'), though it does not explicitly name an alternative sibling or an exact when-to-use condition.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_guildARead-onlyIdempotent
Get one guild by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | ||
| guild_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the agent knows this is a safe read operation. The description adds no behavioral context beyond that—no mention of not-found behavior, permissions, rate limits, or return format. It is neutral and does not contradict the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence that states the action and target without filler. It is well under any length concern and front-loads the most relevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple getter with two parameters, rich safety annotations, and no output schema, the description covers the core action and target. It does not specify behavior for missing guilds or timeout units, but these are secondary; the tool is adequately characterized for invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema_description_coverage at 0%, the schema offers no parameter descriptions. The description clarifies the purpose of guild_id through 'by ID,' but it does not address the optional timeout parameter, its unit, or its effect. This is insufficient compensation for the complete absence of schema-level parameter docs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get'), a specific resource ('guild'), and scope qualifiers ('one', 'by ID'), which clearly distinguish it from the plural sibling get_guilds that presumably lists guilds. The singular target makes the tool's purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives like get_guilds. The 'by ID' phrasing implies the intended context (fetch a single guild when its ID is known), but it never names a sibling or exclusion condition, leaving the agent to infer the choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_guildsARead-onlyIdempotent
List guild metadata available to the Discord client.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, idempotentHint, non-destructiveHint, and openWorldHint, so the safety profile is clear. The description adds minimal behavioral context beyond the phrase 'available to the Discord client'; it does not detail return behavior, data freshness, or any client-connection requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It states the operation and the resource immediately, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter list operation, the description is adequately complete: it indicates the result type (a list of guild metadata) and the data scope (what the Discord client has available). There is no output schema, so slightly more detail about the returned metadata fields could improve completeness, but it is not necessary for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema coverage is effectively 100%, so there are no parameter semantics for the description to clarify. The baseline of 4 applies because no parameter documentation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and a clear resource ('guild metadata'), and signals a plural, list-style operation that distinguishes it from singular counterparts like get_guild. The scope 'available to the Discord client' further clarifies what data is returned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used when a list of guild metadata is needed, but it does not explicitly state when to prefer it over get_guild or mention any other alternatives. There are no exclusions or conditional guidance, so usage is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_selected_voice_channelARead-onlyIdempotent
Get the currently selected voice channel, or null.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only, idempotent, and non-destructive. The description adds the useful behavioral detail that the result may be null, which is not fully captured by the annotations. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is one concise sentence that front-loads the action and resource while also disclosing the null return state. There is no filler or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only tool with strong annotations, this description is complete: it states what is returned, the null possibility, and the selection context. An agent has enough information to invoke it correctly without additional explanation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the description has no parameter burden. The schema is empty and fully covered, so the baseline of 4 applies; no additional parameter semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb, 'Get', and names a precise resource: the currently selected voice channel. It also explicitly states the null case, which distinguishes this from generic channel getters like get_channel or get_channels.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'currently selected voice channel' implies when the tool is appropriate, but the description gives no explicit guidance about when to use this over siblings like get_voice_settings or get_channel, nor does it state any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_voice_settingsBRead-onlyIdempotent
Get local voice settings.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds a 'local' qualifier that hints at scope, but does not disclose return format, potential edge cases, or any other behavioral details beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is a single, front-loaded sentence with no filler. Every word ('Get', 'local', 'voice settings') contributes meaning, and there is no redundant information or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, annotations covering safety), the description is minimally adequate but leaves ambiguity around what 'voice settings' actually includes and what the returned data looks like. More specific return details would improve completeness without bloating the description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema coverage is trivially 100%. Per the baseline for parameterless tools, the description is not required to explain parameters, and it correctly adds nothing irrelevant. No parameter-related gaps exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Get') and resource ('local voice settings'), which clearly differentiates it from siblings like get_selected_voice_channel that deal with channels rather than settings. The term 'local' adds a scoping detail, though it could be more explicit about what constitutes voice settings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use this tool versus alternatives. Sibling tools such as get_selected_voice_channel or get_events are not mentioned, and no context is provided about typical use cases or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
subscribeAIdempotent
Subscribe to an RPC event. Channel events require channel_id; GUILD_STATUS requires guild_id. Read received events with get_events. Subscribe again after a connection gap. Additional Discord scopes may be required.
| Name | Required | Description | Default |
|---|---|---|---|
| event | Yes | ||
| guild_id | No | ||
| channel_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey idempotency and non-read-only status. The description adds context beyond those hints: subscriptions are not persistent across connection gaps ('Subscribe again after a connection gap') and may require extra authentication scopes. However, it does not describe what the response looks like or behavior on duplicate subscriptions, which are minor gaps given the idempotentHint true.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three compact sentences each carry distinct information: purpose, parameter requirements, event retrieval, resubscription, and scope prerequisites. There is no redundancy or filler, and the purpose is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the moderate complexity (3 params, no output schema, no nested objects), the description covers the essential call flow and constraints. Missing are a full event-to-ID mapping and what response to expect after subscribing, but the presence of get_events implies the read path. Overall, an agent can invoke it correctly in most cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate for parameter meaning. It clarifies that channel events require channel_id and GUILD_STATUS requires guild_id, which is useful, but it does not map out which of the 23 enum events qualify as 'channel events.' This leaves ambiguity for an agent invoking with only the enum list and no further guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Subscribe to an RPC event.' It clearly distinguishes this from siblings by noting the complementary actions of reading events with get_events and resubscribing after gaps, so an agent can tell it apart from unsubscribe and get_events without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent when to use this tool: subscribe to start receiving events, then read with get_events, and resubscribe after a connection gap. It also mentions 'Additional Discord scopes may be required,' which is a prerequisite condition. This is concrete usage guidance beyond a generic purpose statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
unsubscribeAIdempotent
Unsubscribe using the same event and target IDs used to subscribe.
| Name | Required | Description | Default |
|---|---|---|---|
| event | Yes | ||
| guild_id | No | ||
| channel_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotence and non-destructive behavior, so the description does not need to restate those. The description adds the important requirement that IDs must match the original subscription, which is useful behavioral context, but it does not disclose any side effects, error behavior, or authentication expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence with no filler. The core instruction (unsubscribe) comes first, followed immediately by the only necessary qualification (matching the original IDs). Every word contributes to the agent's ability to call the tool correctly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple unsubscribe operation with no output schema, the description is largely complete: it states what to do and how to select parameters. The annotations add safety and idempotence context, and the schema fully enumerates valid event values and ID formats. A brief note about return values or behavior when no subscription exists would make it fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It clarifies that 'event' and 'target IDs' (presumably guild_id and channel_id) should be the same values used during a prior subscribe call, which adds useful semantic meaning beyond the raw enum and patterns. However, it does not explicitly map 'target IDs' to the optional parameter names or clarify required/optional roles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear, specific action ('Unsubscribe') and the key context for that action: use the same event and target IDs previously used to subscribe. This distinguishes it from the sibling 'subscribe' tool and other getter tools by linking it directly to the subscription lifecycle.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'using the same event and target IDs used to subscribe' provides actionable usage guidance: this tool is intended to reverse a prior subscription with matching parameters. It does not explicitly name when not to use it or mention alternatives, but the context is clear enough for an agent to avoid misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
9 tool updates
v0.1.0- First observed
get_channel - First observed
get_channels - First observed
get_events - First observed
get_guild - First observed
get_guilds - First observed
get_selected_voice_channel - First observed
get_voice_settings - First observed
subscribe - First observed
unsubscribe
TDQS
Scored across 9 tools
Each tool targets a distinct concern: voice state, event subscription, guild/channel lookup, and the event buffer. The singular/plural pairs like get_guild vs get_guilds and get_channel vs get_channels are clearly separated by their descriptions.
The retrieval tools consistently follow a get_<resource> pattern using lowercase snake_case. subscribe and unsubscribe deviate by being verb-only, but they form a clear paired command group, so the mix is minor rather than confusing.
Nine tools is a well-scoped size for a Discord RPC client surface: voice/event tools plus guild/channel lookup tools cover the core use case without redundancy. Each tool has a clear purpose and the set does not feel bloated.
The set covers the main read-only Discord RPC workflows: retrieving guilds, channels, voice state, and subscribing to/reading events. It lacks mutating RPC operations like set_voice_settings or activity control, but those appear to be outside the server's apparent monitoring-oriented scope.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Connect a Discord bot (bot token from the developer portal) to read/send messages, list guilds and c
Control your Discord community: send/read messages, manage channels and forums, and handle webhook…
Carbon Voice MCP serves as a bridge that connects AI assistants like ChatGPT, Claude, and Cursor to a user's Carbon Voice account, turning voice messages and conversations into a private, on-demand knowledge base. It provides 28 specialized tools for comprehensive voice messaging management, including creating and sending messages, accessing conversation history with instant transcription, running AI actions (summarization, TLDR generation, meeting notes), and managing workspace collaboration through folders, contacts, and team communications.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Discord servers through a bot, supporting channel management, messaging, forum operations, reactions, and webhooks.22400MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI clients to manage Discord servers through natural language, offering tools for guilds, channels, messages, roles, members, webhooks, invites, and automations. Includes a conversational agent that responds to @mentions in Discord.8Apache 2.0
- FlicenseNot gradedqualityCmaintenanceEnables interaction with Discord through natural language, including reading and sending messages, managing servers, and user actions.-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with Discord through the REST API and real-time events, supporting message management, user info, channel operations, and more with security controls.61MIT