Band's MCP Server
Configuration
View docs{
"mcpServers": {
"kanghouchao-band-mcp-server": {
"command": "band-mcp-server",
"args": [],
"env": {
"BAND_ACCESS_TOKEN": "your_band_api_access_token"
}
}
}
}You can run Band MCP Server to connect the Band social platform with MCP-compatible clients and AI assistants. It lets you authorize with a Band API access token and operate Band-related MCP endpoints through either a local executable or a Docker container, enabling seamless interactions and automation.
You connect to Band MCP Server from an MCP client by configuring how the server is started and how the client should communicate with it. Choose either a local executable approach or a Docker-based approach, then provide your Band API access token to authorize requests.
Prerequisites you need before starting: Node.js (for the npm-based executable) and Docker (for the container approach). Ensure you have a Band API Access Token from the Band Developer Portal.
Option A: Install and run the Band MCP Server as a local executable via npm install -g band-mcp-server, then start it in your environment with the required token.
Option B: Run the Band MCP Server as a Docker container using the official image from Docker Hub.
Use your Band API Access Token wherever a token is required to authenticate against Band services. You can configure multiple MCP server entries in your client configuration to support both local and Docker-based usage.
{
"mcpServers": {
"band-api": {
"command": "band-mcp-server",
"args": [],
"env": {
"BAND_ACCESS_TOKEN": "your_band_api_access_token"
}
}
}
}