Band MCP Server
The Band MCP Server provides a comprehensive Model Context Protocol interface for the Band social platform, enabling AI assistants and MCP-compatible tools to interact with Band data through full read/write operations.
Core Capabilities:
User & Band Management: Get user profiles, list bands, and verify permissions within specific bands
Post Management: Retrieve, create, and delete posts with pagination and detailed information access
Comment Management: Fetch, add, and remove comments with appropriate permission checks
Media Access: Browse photo albums and photos within Band groups
Secure Authentication: Band API access token integration with comprehensive error handling
Robust Integration: Input validation using Zod schemas, API rate limit handling, and MCP resource/tool exposure
Flexible Deployment: Docker container, npm install, npx execution, or local development options
Enables packaging and deploying the MCP server as a Docker container for simplified deployment and portability.
Handles environment variables for configuring sensitive information like API credentials.
Enables version control and cloning of the repository for installation.
Provides the runtime environment for the MCP server, requiring Node.js 18+ for operation.
Manages dependencies and provides scripts for building, testing, and running the server.
Implements the server using TypeScript for type safety and maintainability.
Click on "Deploy 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., "@Band MCP Servershow me the latest posts from my band group"
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.
A fully functional Model Context Protocol (MCP) server that integrates with the Band API. This server enables seamless interaction with the Band social platform through AI assistants and other MCP-compatible tools.
Overview
This server can be used in two primary ways:
As a standalone executable: Installed via
npmand configured directly in a compatible MCP client.As a Docker container: Pulled from Docker Hub and configured in a compatible MCP client to be run on-demand.
Related MCP server: Notion MCP Server
Usage & Client Configuration
To use this server, you need a Band API Access Token. You can obtain one from the Band Developer Portal.
Below are configuration examples for different clients and usage methods.
Example 1: Claude Desktop (NPM version)
This method assumes you have installed the server via npm install -g band-mcp-server.
In Claude Desktop, open Settings > Developer and click Edit Config.
Add the following to the
mcpServersobject inclaude_desktop_config.json:
{
"mcpServers": {
"band-api": {
"command": "band-mcp-server",
"args": [],
"env": {
"BAND_ACCESS_TOKEN": "your_band_api_access_token"
}
}
}
}Replace your_band_api_access_token with your actual token.
Example 2: Claude Desktop (Docker version)
This method uses the Docker image and does not require npm.
In Claude Desktop, open Settings > Developer and click Edit Config.
Add the following to the
mcpServersobject inclaude_desktop_config.json:
{
"mcpServers": {
"band-api-docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BAND_ACCESS_TOKEN=your_band_api_access_token",
"kanghouchao/band-mcp-server:latest"
]
}
}
}Replace your_band_api_access_token with your actual token.
License
This project is licensed under the MIT License.
Available Tools
12 toolsget_albumsB
Get photo albums from a specific band in BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'Get photo albums' but doesn't clarify whether this is a read-only operation, if it requires authentication, what the output format looks like, or any rate limits. The description lacks essential behavioral context for a tool with no annotation coverage.
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, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, with zero wasted 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?
Given the tool's simplicity (1 parameter, 100% schema coverage, and an output schema exists), the description is minimally adequate. However, with no annotations and no guidance on usage or behavior, it leaves gaps in understanding how to effectively invoke the tool in context with siblings.
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 input schema has 100% description coverage, with the parameter 'band_key' clearly documented as 'band ID'. The description adds no additional parameter semantics beyond what the schema provides, such as format examples or constraints. With high schema coverage, 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get photo albums') and the target resource ('from a specific band in BAND'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate this tool from sibling tools like 'get_photos' or 'get_bands', which might retrieve related but different resources.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_photos' (which might retrieve individual photos) or 'get_bands' (which might retrieve band information), nor does it specify prerequisites or exclusions for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_bandsB
Get the list of bands that the user joined from BAND.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | User's bands data returned from BAND API. |
| success | Yes | Indicates if the operation was successful. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states a read operation ('Get'), implying it's likely safe, but doesn't mention permissions, rate limits, or what 'joined from BAND' entails. For a tool with zero annotation coverage, this is a significant gap in transparency.
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, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded and wastes no space, 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?
Given the tool has 0 parameters, 100% schema coverage, and an output schema, the description is minimally adequate. However, it lacks context about the user's relationship to bands (e.g., what 'joined' means) and behavioral details, which could be important for an agent to use it correctly. With no annotations, it should do more to compensate.
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 0 parameters with 100% schema description coverage, so the schema fully documents the inputs. The description doesn't need to add parameter details, and it doesn't introduce confusion. A baseline of 4 is appropriate for a zero-parameter tool with complete schema coverage.
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 clearly states the action ('Get') and resource ('list of bands that the user joined from BAND'), making the purpose understandable. It doesn't explicitly differentiate from siblings like 'get_albums' or 'get_user_information', but the resource specificity helps. A 5 would require explicit sibling differentiation.
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 provides no guidance on when to use this tool versus alternatives like 'get_user_information' or other 'get_' siblings. It lacks context about prerequisites, timing, or exclusions, leaving the agent to infer usage based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_commentsB
Get comments from a specific post in BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| post_key | Yes | post identifier | |
| sort | No | sort order for comments |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves comments but doesn't mention whether it's read-only, requires authentication, has rate limits, returns paginated results, or includes metadata. This is a significant gap for a tool with potential complexity.
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, efficient sentence with zero waste. It front-loads the core purpose ('Get comments') and specifies the context ('from a specific post in BAND'), making it appropriately sized and well-structured.
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 has an output schema (which covers return values), 100% schema coverage for inputs, and no annotations, the description is minimally adequate. However, it lacks behavioral context (e.g., read-only nature, error handling), which is needed for a tool interacting with a social platform like BAND.
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 100%, so the schema already documents all parameters (band_key, post_key, sort). The description adds no additional meaning beyond implying a post context, which is already clear from the parameter names. Baseline 3 is appropriate as the schema does the heavy lifting.
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 clearly states the action ('Get comments') and the resource ('from a specific post in BAND'), distinguishing it from siblings like get_post or get_posts. However, it doesn't explicitly differentiate from write_comment or remove_comment in terms of read vs. write operations, which would require a 5.
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 provides no guidance on when to use this tool versus alternatives like get_post (which might include comments) or write_comment. It lacks explicit context, prerequisites, or exclusions, leaving the agent to infer usage based on the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_photosB
Get photos from a specific album in BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| photo_album_key | No | photo album identifier |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states what the tool does ('Get photos') without mentioning any traits like whether it's read-only, requires authentication, has rate limits, returns paginated results, or what the output format is. This leaves significant gaps for an agent to understand the tool's behavior.
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, efficient sentence that directly states the tool's purpose without any wasted words. It is front-loaded and appropriately sized for its simple function, earning a top score for conciseness.
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 that there is an output schema (which covers return values), the description doesn't need to explain outputs. However, with no annotations and a simple purpose, the description is minimally adequate but lacks behavioral context and usage guidelines. It meets the basic requirement but has clear gaps in completeness for effective tool selection.
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 schema description coverage is 100%, with clear descriptions for both parameters ('band identifier' and 'photo album identifier'). The description adds no additional meaning beyond this, as it doesn't explain parameter relationships or usage nuances. According to the rules, with high schema coverage, the baseline is 3, which is appropriate here.
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 clearly states the verb 'Get' and the resource 'photos from a specific album in BAND', making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_albums' or 'get_posts', which could retrieve related but different resources, so it falls short of a perfect score.
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 provides no guidance on when to use this tool versus alternatives. For example, it doesn't clarify if this is for retrieving photos from a known album versus using 'get_albums' to find albums first, or how it differs from 'get_posts' which might include photos. Without any usage context or exclusions, the score is low.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_postC
Get a single post from BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| post_key | Yes | post identifier |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a read operation ('Get') but doesn't specify if it's safe, requires authentication, has rate limits, or what happens on errors. This leaves significant gaps in understanding the tool's behavior beyond the basic action.
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, direct sentence: 'Get a single post from BAND.' It is front-loaded with the core action and resource, with no unnecessary words or fluff, making it highly efficient and easy to parse.
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 (2 parameters, 100% schema coverage, output schema provided), the description is minimally adequate. However, it lacks context on authentication, error handling, or how it fits with sibling tools, which could help an agent use it more effectively in a broader workflow.
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 schema description coverage is 100%, with clear documentation for both parameters ('band_key' and 'post_key'). The description doesn't add any meaning beyond what the schema provides, such as format examples or usage tips, but the schema adequately covers the parameters, meeting the baseline for high coverage.
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 the tool's purpose as 'Get a single post from BAND,' which clearly indicates a read operation on a specific resource. However, it lacks differentiation from sibling tools like 'get_posts' (plural) and doesn't specify what distinguishes retrieving one post versus multiple posts, making it somewhat vague in context.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, such as needing a band and post key, or compare it to similar tools like 'get_posts' for multiple posts or 'get_comments' for related content, leaving the agent without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_postsB
Get posts from a specific band in BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | for paging | |
| band_key | Yes | band identifier | |
| limit | No | number of posts to load. min: 1, max: 100, default: 20 | |
| locale | No | Region and language | ja_JP |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states a read operation ('Get posts') but lacks details on permissions, rate limits, pagination behavior (beyond the 'after' parameter), or what the output contains. This is a significant gap for a tool with no annotation coverage.
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, efficient sentence with zero waste. It's front-loaded with the core purpose, making it appropriately sized and structured for quick understanding.
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 has an output schema, the description doesn't need to explain return values. However, with no annotations and a read operation that involves parameters like pagination and locale, the description is minimal and lacks context on behavioral aspects (e.g., permissions, data scope). It's adequate but has clear gaps in completeness.
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 100%, so the schema already documents all parameters (band_key, after, limit, locale) with descriptions. The description adds no additional meaning beyond implying a band context, which is redundant with the schema. Baseline 3 is appropriate when the schema does the heavy lifting.
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 clearly states the action ('Get posts') and the resource ('from a specific band in BAND'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'get_post' (singular) or 'get_comments', which might retrieve related data, so it's not fully specific to sibling context.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_post' (for a single post) or 'get_comments' (for comments on posts), leaving the agent without explicit usage context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_informationB
Get user profile information from BAND. Optionally specify a band_key to get user info within a specific band context.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | No | Band ID to get the user's profile from a specific band. If not provided, the default profile of the user will be returned. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | User profile data returned from BAND API. |
| success | Yes | Indicates if the operation was successful. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool retrieves information (implying read-only) and describes the band_key's effect, but fails to address critical aspects like authentication needs, rate limits, error conditions, or what the output contains (though an output schema exists). For a tool with zero annotation coverage, this leaves significant behavioral gaps.
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 two concise sentences that efficiently convey the core purpose and key parameter usage. It is front-loaded with the main action and avoids unnecessary details, making it easy to parse. Every sentence adds value without redundancy.
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 low complexity (1 optional parameter) and the presence of an output schema (which handles return values), the description is reasonably complete. It covers the purpose and parameter context adequately. However, it could improve by addressing behavioral aspects like authentication or error handling, which are not covered by annotations or schema.
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 100%, with the parameter 'band_key' fully documented in the schema. The description adds minimal value by restating the optionality and effect of band_key ('Optionally specify... to get user info within a specific band context'), but doesn't provide additional semantics beyond what the schema already covers. This meets the baseline for high schema coverage.
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 clearly states the verb ('Get') and resource ('user profile information from BAND'), making the purpose evident. It distinguishes this tool from siblings like 'get_bands' or 'get_posts' by focusing on user profiles rather than other data types. However, it doesn't explicitly differentiate from non-sibling alternatives or specify the exact scope of 'profile information' beyond the band context.
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 usage by mentioning the optional 'band_key' parameter for context-specific retrieval, suggesting when to use it (for band-specific vs. default profiles). However, it lacks explicit guidance on when to choose this tool over others (e.g., vs. 'get_bands' for band-level data) or any prerequisites/exclusions, leaving usage somewhat inferred rather than clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
permissionsB
Get post permission information from BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | Band ID | |
| permissions | Yes | Comma-separated permission types: posting (Post write permission), commenting (Comment write permission), contents_deletion (Post/Comment delete permission) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states 'Get' which implies a read operation, but doesn't disclose behavioral traits such as authentication requirements, rate limits, error conditions, or what the output contains. This is a significant gap for a tool with no annotation coverage.
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, efficient sentence with zero waste. It's appropriately sized and front-loaded, directly stating the tool's purpose without 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 that an output schema exists (which covers return values), the description doesn't need to explain outputs. However, with no annotations and incomplete behavioral disclosure, it's only minimally adequate. The description covers the basic purpose but lacks depth for a tool interacting with permissions.
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 100%, so the schema already documents both parameters ('band_key' as Band ID and 'permissions' with comma-separated types). The description adds no additional meaning beyond what the schema provides, resulting in the baseline score of 3.
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 clearly states the action ('Get') and resource ('post permission information from BAND'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'get_post' or 'get_posts' that might also retrieve post-related information, which prevents a perfect score.
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 provides no guidance on when to use this tool versus alternatives. With siblings like 'get_post' and 'get_posts' that handle post data, there's no indication of when permission information is needed instead of or in addition to post content, leaving usage unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_commentB
Delete a comment from BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| comment_key | Yes | comment identifier to delete | |
| post_key | Yes | post identifier |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states the action ('Delete') without disclosing behavioral traits. It doesn't mention permissions needed, whether deletion is permanent/reversible, rate limits, or response behavior, which are critical for a destructive operation.
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, efficient sentence with zero waste, front-loading the core action. It's appropriately sized for a simple tool, making every word count without 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 complexity (destructive operation with 3 parameters) and no annotations, the description is minimally adequate but incomplete. It states the purpose but lacks behavioral context, and while an output schema exists, the description doesn't address critical aspects like permissions or irreversible effects.
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 100%, so the schema fully documents the three parameters (band_key, comment_key, post_key). The description adds no additional meaning beyond implying deletion requires these identifiers, aligning with the baseline when schema does the heavy lifting.
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 clearly states the action ('Delete') and target resource ('a comment from BAND'), providing specific verb+resource pairing. However, it doesn't differentiate from sibling tools like 'remove_post' or 'write_comment' beyond the obvious resource difference, missing explicit distinction in scope or hierarchy.
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 provided on when to use this tool versus alternatives. The description lacks context about prerequisites (e.g., needing post_key), exclusions, or comparisons to sibling tools like 'remove_post' or 'write_comment', leaving usage unclear beyond the basic action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_postB
Delete a post from BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| post_key | Yes | post identifier to delete |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states the basic action. It doesn't disclose whether deletion is permanent/reversible, what permissions are required, if there are rate limits, or what happens to associated data (e.g., comments). The description is minimal and lacks 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded with the core action and resource, making it immediately understandable without 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 this is a destructive operation with no annotations but with an output schema (which handles return values), the description is minimally adequate. However, for a deletion tool, it should ideally include more about permissions, consequences, or error cases to be 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 100%, so parameters are fully documented in the schema. The description adds no additional meaning about parameters beyond implying they identify the target post. Baseline 3 is appropriate since the schema does the heavy lifting.
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 clearly states the action ('Delete') and resource ('a post from BAND'), making the purpose immediately understandable. It distinguishes from siblings like 'remove_comment' by specifying the resource type, though it doesn't explicitly contrast with other deletion tools.
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 provided on when to use this tool versus alternatives. While it's clear this deletes posts, there's no mention of prerequisites, permissions needed, or when to choose this over similar tools like 'remove_comment' for comment deletion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
write_commentB
Write a comment to BAND post.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| body | Yes | comment content | |
| post_key | Yes | post identifier |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a write operation ('Write a comment') but doesn't mention permission requirements, whether comments are editable/deletable, rate limits, or what happens on success/failure. This leaves significant behavioral gaps for a mutation tool.
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, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a straightforward tool and front-loads the essential 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?
Given that there's an output schema (which handles return values) and 100% schema coverage for parameters, the description covers the basic purpose adequately. However, for a mutation tool with no annotations, it should provide more behavioral context about permissions, side effects, or error conditions to be truly 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 100%, so the schema already documents all three parameters adequately. The description doesn't add any additional parameter context beyond what's in the schema, such as format examples or constraints, so it meets the baseline for high schema coverage.
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 clearly states the action ('Write a comment') and target resource ('to BAND post'), making the purpose immediately understandable. However, it doesn't differentiate this tool from its sibling 'write_post' or explain how commenting differs from creating a post, which prevents a perfect score.
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 provided about when to use this tool versus alternatives like 'write_post' or 'remove_comment'. The description doesn't mention prerequisites, appropriate contexts, or exclusions, leaving the agent without usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
write_postB
Write a post to BAND.
| Name | Required | Description | Default |
|---|---|---|---|
| band_key | Yes | band identifier | |
| content | Yes | post content | |
| do_push | No | whether to send push notification |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_code | Yes | Result code |
| result_data | Yes | Result data |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states 'Write a post,' implying a mutation that creates content, but lacks critical behavioral details: it doesn't specify required permissions, whether the post is public/private, if there are rate limits, what happens on success/failure, or if it's idempotent. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
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, efficient sentence with zero waste. It's front-loaded with the core action and resource, making it immediately scannable. Every word earns its place by conveying the essential purpose without redundancy or fluff.
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 complexity (a mutation with 3 parameters), lack of annotations, and presence of an output schema, the description is minimally adequate but incomplete. It states what the tool does but misses behavioral context (e.g., permissions, effects) and usage guidelines. The output schema may cover return values, but the description doesn't compensate for other gaps, making it just viable.
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 100%, with clear descriptions for band_key, content, and do_push. The description adds no additional meaning beyond the schema—it doesn't explain parameter interactions, formatting requirements (e.g., content length), or default behaviors (e.g., do_push default). Baseline 3 is appropriate as the schema does the heavy lifting, but no extra value is 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?
The description clearly states the action ('Write') and resource ('a post to BAND'), making the purpose immediately understandable. It distinguishes this as a write operation among sibling tools that are mostly read operations (get_*) or other mutations (remove_*, write_comment). However, it doesn't specify what 'BAND' is (a platform/service) or the exact nature of the post, keeping it from a perfect score.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a band_key), differentiate from write_comment (which might be for commenting on posts), or indicate scenarios where this is appropriate (e.g., creating new posts vs. updating existing ones). Usage is implied but not explicitly stated.
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.
12 tool updates
- First observed
get_albums - First observed
get_bands - First observed
get_comments - First observed
get_photos - First observed
get_post - First observed
get_posts - First observed
get_user_information - First observed
permissions - First observed
remove_comment - First observed
remove_post - First observed
write_comment - First observed
write_post
TDQS
Scored across 12 tools
Every tool has a clearly distinct purpose targeting specific resources and actions in the BAND domain. Tools like get_albums vs get_photos or write_post vs write_comment have no overlap, and the get_* tools are clearly differentiated by what they retrieve.
All tools follow a consistent verb_noun pattern with snake_case naming. The verbs are clear (get, write, remove) and consistently applied, with no deviations in style or convention across the set.
12 tools is well-scoped for a social media/band management domain, covering core operations like reading/writing posts and comments, managing albums and photos, and user/band information. Each tool earns its place without feeling excessive or sparse.
The tool set provides strong CRUD coverage for posts and comments (get/write/remove), good read access for albums, photos, bands, and user info, and permissions checking. Minor gaps include no update operations for posts/comments and no album/photo creation or deletion tools, but agents can work around these with the available tools.
Maintenance
Related MCP Connectors
Model Context Protocol server for Studex tools, notifications, and profile integrations
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
BGG MCP provides access to the BoardGameGeek API through the Model Context Protocol, enabling retr…
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Related MCP Servers
- AlicenseAqualityCmaintenanceA Model Context Protocol server that enables AI assistants to interact with Strapi CMS instances through a standardized interface, supporting content types and REST API operations.56975MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides a standardized interface for AI models to access, query, and modify content in Notion workspaces.1,0694MIT
- AlicenseNot gradedqualityDmaintenanceA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.711MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables real-time communication using Server-Sent Events (SSE), providing standardized model management and resource templating capabilities.-