MCP Server
Active
ISC
io.github.detailobsessed/unblu MCP Server
io.github.detailobsessed/unblu
What is the io.github.detailobsessed/unblu MCP server?
Operate Unblu deployments: health checks, conversation ops, and 300+ API endpoints
How to install io.github.detailobsessed/unblu
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UNBLU_BASE_URLrequiredUnblu API base URL (e.g., https://your-instance.unblu.cloud/app/rest/v4)
UNBLU_API_KEYsecretUnblu API key for authentication
UNBLU_USERNAMEUnblu username for basic auth (alternative to API key)
UNBLU_PASSWORDsecretUnblu password for basic auth (alternative to API key)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"unblu": {
"command": "uvx",
"args": [
"unblu-mcp"
],
"env": {
"UNBLU_BASE_URL": "<YOUR_UNBLU_BASE_URL>",
"UNBLU_API_KEY": "<YOUR_UNBLU_API_KEY>",
"UNBLU_USERNAME": "<YOUR_UNBLU_USERNAME>",
"UNBLU_PASSWORD": "<YOUR_UNBLU_PASSWORD>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"unblu": {
"command": "uvx",
"args": [
"unblu-mcp"
],
"env": {
"UNBLU_BASE_URL": "<YOUR_UNBLU_BASE_URL>",
"UNBLU_API_KEY": "<YOUR_UNBLU_API_KEY>",
"UNBLU_USERNAME": "<YOUR_UNBLU_USERNAME>",
"UNBLU_PASSWORD": "<YOUR_UNBLU_PASSWORD>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"unblu": {
"command": "uvx",
"args": [
"unblu-mcp"
],
"env": {
"UNBLU_BASE_URL": "<YOUR_UNBLU_BASE_URL>",
"UNBLU_API_KEY": "<YOUR_UNBLU_API_KEY>",
"UNBLU_USERNAME": "<YOUR_UNBLU_USERNAME>",
"UNBLU_PASSWORD": "<YOUR_UNBLU_PASSWORD>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"unblu": {
"type": "stdio",
"command": "uvx",
"args": [
"unblu-mcp"
],
"env": {
"UNBLU_BASE_URL": "<YOUR_UNBLU_BASE_URL>",
"UNBLU_API_KEY": "<YOUR_UNBLU_API_KEY>",
"UNBLU_USERNAME": "<YOUR_UNBLU_USERNAME>",
"UNBLU_PASSWORD": "<YOUR_UNBLU_PASSWORD>"
}
}
}
}Claude Code
claude mcp add unblu --env UNBLU_BASE_URL=<YOUR_UNBLU_BASE_URL> --env UNBLU_API_KEY=<YOUR_UNBLU_API_KEY> --env UNBLU_USERNAME=<YOUR_UNBLU_USERNAME> --env UNBLU_PASSWORD=<YOUR_UNBLU_PASSWORD> -- uvx unblu-mcpRelated MCP servers
Token-efficient GitLab MCP: 167 tools via 3 meta-tools, field projection, keyset pagination
3
View repository →TypeScript
MIT
MCP server that helps AI coding agents interact with AI code reviewers on GitHub PRs
0
View repository →Python
ISC