Clanker Support
Integrations

MCP connector (Claude Code & Codex)

Work your support inbox from your coding agent — read escalations, send replies, and update the knowledge base over the Model Context Protocol

The official MCP server, @clankersupport/mcp, connects Clanker Support to any Model Context Protocol client — Claude Code and Codex being the two it's tested against. Your coding agent gets the operator surface as tools: list and read conversations, reply to customers, leave internal notes, search the workspace, and add knowledge sources.

The loop it unlocks: a customer reports a bug and escalates → your agent reads the conversation from the terminal, you fix the bug together → the agent replies to the customer and adds the fix to the knowledge base so the AI answers it next time. No dashboard tab involved.

Claude Code

claude mcp add clanker-support \
  --env CLANKER_EMAIL=you@company.com \
  --env CLANKER_PASSWORD=your-password \
  -- npx -y @clankersupport/mcp

Restart Claude Code (or run /mcp) and the clanker-support tools are available. For a team-shared, project-scoped setup, commit a .mcp.json that references environment variables instead of literal credentials:

{
	"mcpServers": {
		"clanker-support": {
			"command": "npx",
			"args": ["-y", "@clankersupport/mcp"],
			"env": {
				"CLANKER_EMAIL": "${CLANKER_EMAIL}",
				"CLANKER_PASSWORD": "${CLANKER_PASSWORD}"
			}
		}
	}
}

Codex

Add to ~/.codex/config.toml:

[mcp_servers.clanker-support]
command = "npx"
args = ["-y", "@clankersupport/mcp"]
env = { CLANKER_EMAIL = "you@company.com", CLANKER_PASSWORD = "your-password" }

Configuration

VariableRequiredDefaultWhat it does
CLANKER_EMAILyesOperator account email
CLANKER_PASSWORDyesOperator account password
CLANKER_API_URLnohttps://api.clankersupport.comYour API origin when self-hosting
CLANKER_WORKSPACE_IDnoautoPin a workspace when the account belongs to several (list_workspaces lists ids)

Prefer a dedicated automation account with the least role that covers what you'll do — agent is enough for reading, replying, notes, and knowledge sources.

Tools

ToolWhat it does
list_workspacesWorkspaces this account belongs to, with role and project count
list_projectsSupport projects in the active workspace
list_conversationsConversations in a project — filter by open / escalated / resolved, or search
conversation_statsOpen / escalated / resolved counts for a project
get_conversationA conversation's full message thread
reply_to_conversationSend an operator reply to the customer (customer-visible)
add_internal_noteTeam-only note on a conversation — never shown to the customer
list_knowledge_sourcesThe project's knowledge base (url / text / qa sources)
add_knowledge_sourceAdd a docs URL, text snippet, or Q&A pair the AI will answer from
searchWorkspace-wide search — the same one the dashboard's ⌘K palette uses

reply_to_conversation is customer-visible, and its tool description instructs agents to confirm the draft with you before sending.

Self-hosting

Set CLANKER_API_URL to your deployment's API origin — everything else is identical. The API must be a build that trusts its own origin for sign-in (July 2026 or later).

On this page