CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Unblu

detailobsessed/unblu-mcp
1authSTDIOregistry active
Summary

A FastMCP-based server that connects Claude to Unblu's customer engagement platform through 300+ REST API endpoints. You get typed tools for common debugging tasks like searching conversations, checking agent availability, and resolving person records, plus an execute_operation escape hatch when you need direct API access. It handles both direct API key auth and Kubernetes port-forwarding with auto-managed kubectl tunnels. The three-layer design (curated tools, generic operation executor, browsable API resources) makes it practical for both routine ops work and one-off API exploration. Includes prompts for structured debugging workflows like conversation troubleshooting and agent lookup. Built for teams running Unblu deployments who need programmatic access without writing integration code.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

unblu-mcp

ci documentation pypi version python versions license FastMCP

A Model Context Protocol (MCP) server for debugging and operating Unblu deployments. Optimised for debugging workflows — curated typed tools for common operations, plus an escape hatch for the full 300+ endpoint API.

📚 Full Documentation

Design

The server exposes three layers, each progressively more powerful:

LayerWhat it isWhen to use
Curated toolsTyped, token-efficient tools for common debugging tasks90% of debugging sessions
execute_operationGeneric escape hatch for any of 331 Unblu API operationsWhen a curated tool doesn't exist
ResourcesRead-only api:// URIs for browsing the API surfaceDiscovery and schema inspection

Quick Start

Installation

uvx unblu-mcp

Or install persistently: uv tool install unblu-mcp

MCP Client Configuration

Direct API access with an API key:

{
  "mcpServers": {
    "unblu": {
      "command": "uvx",
      "args": ["unblu-mcp"],
      "env": {
        "UNBLU_BASE_URL": "https://your-instance.unblu.cloud/app/rest/v4",
        "UNBLU_API_KEY": "your-api-key"
      }
    }
  }
}

Kubernetes port-forward (auto-managed):

For --provider k8s, you need all of the following:

  • kubectl installed and available to the MCP client process
  • a valid Kubernetes login with access to the target namespace
  • a K8s environment map in ~/.unblu-mcp/k8s_environments.yaml or passed with --k8s-config

Quick bootstrap:

mkdir -p ~/.unblu-mcp
uvx unblu-mcp --print-k8s-config-template > ~/.unblu-mcp/k8s_environments.yaml

The --environment value must match a key from that YAML file, such as dev, test1, or t1.

Minimal config file:

environments:
  dev:
    local_port: 8084
    namespace: unblu-dev
    service: haproxy
    service_port: 8080
    api_path: /app/rest/v4

Then point your MCP client at that environment:

{
  "mcpServers": {
    "unblu": {
      "command": "uvx",
      "args": ["unblu-mcp", "--provider", "k8s", "--environment", "dev"],
      "env": {
        "PATH": "/Users/YOUR_USERNAME/.local/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
      }
    }
  }
}

The env block is optional if your MCP client already inherits a PATH that includes both uvx and kubectl. Keep it if the client cannot otherwise find those binaries.

Tools

Curated tools (read-only)

ToolDescription
get_current_accountCurrent account info — good first call to verify connectivity
search_conversations(status?, topic?, assignee_id?, limit?, fields?)Search conversations with filters
get_conversation(conversation_id)Full conversation detail with participants
search_persons(query?, email?, limit?, fields?)Find persons (visitors, agents)
get_person(person_id)Full person detail
get_persons(identifiers, fields?)Batch-resolve up to 20 persons in parallel
search_users(query?, email?, limit?, fields?)Find registered users
get_user(user_id)Full user detail
check_agent_availability(named_area_id?)Check agent availability per named area
search_named_areas(query?, limit?)List named areas (routing targets)
find_operation(query, service?, include_schema?, limit?)Discover API operations by keyword

Mutation tools

ToolDescription
assign_conversation(conversation_id, agent_id)Assign a conversation to an agent
end_conversation(conversation_id)End an active conversation

Escape hatch

ToolDescription
execute_operation(operation_id, path_params?, query_params?, body?, fields?, confirm_destructive?)Execute any of the 331 Unblu API operations

Resources

URIDescription
api://servicesJSON list of all API service groups
api://operations/{operation_id}Full resolved schema for a specific operation

Prompts

PromptDescription
debug_conversation(conversation_id)Step-by-step debugging workflow for a conversation
find_agent(criteria)Locate an agent and check their availability
account_health_checkValidate account configuration and connectivity

Development

git clone https://github.com/detailobsessed/unblu-mcp.git
cd unblu-mcp
uv sync --all-extras --dev
uv run poe test

License

ISC License

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

UNBLU_BASE_URL*

Unblu API base URL (e.g., https://your-instance.unblu.cloud/app/rest/v4)

UNBLU_API_KEYsecret

Unblu API key for authentication

UNBLU_USERNAME

Unblu username for basic auth (alternative to API key)

UNBLU_PASSWORDsecret

Unblu password for basic auth (alternative to API key)

Registryactive
Packageunblu-mcp
TransportSTDIO
AuthRequired
UpdatedMar 5, 2026
View on GitHub