Band MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_user_informationB | Get user profile information from BAND. Optionally specify a band_key to get user info within a specific band context. |
| get_bandsB | Get the list of bands that the user joined from BAND. |
| get_postsB | Get posts from a specific band in BAND. |
| get_postC | Get a single post from BAND. |
| get_commentsB | Get comments from a specific post in BAND. |
| permissionsB | Get post permission information from BAND. |
| get_albumsB | Get photo albums from a specific band in BAND. |
| get_photosB | Get photos from a specific album in BAND. |
| write_commentB | Write a comment to BAND post. |
| write_postB | Write a post to BAND. |
| remove_postB | Delete a post from BAND. |
| remove_commentB | Delete a comment from BAND. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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.