Kustomer MCP Server
for AI Agents
Connect your AI agent to StackOne's Kustomer MCP server and give it 53 MCP tools out of the box. Auth, tool execution, and security all managed.
Coverage
53 Agent Actions
Create, read, update, and delete across Kustomer — and extend your agent's capabilities with custom actions.
Authentication
Agent Tool Authentication
Per-user OAuth in one call. Your Kustomer MCP server gets session-scoped tokens with zero credentials stored on your infra.
Agent Auth →Security
Agent Protection
Every Kustomer tool response scanned for prompt injection in milliseconds — 88.7% accuracy, all running on CPU.
Prompt Injection Defense →Performance
Max Agent Context. Min Cost.
Free up to 96% of your agent's context window to enhance reasoning and reduce cost, on every Kustomer call.
Tools Discovery →What is the Kustomer MCP Server?
A Kustomer MCP server lets AI agents read and write Kustomer data through the Model Context Protocol — Anthropic's open standard for connecting LLMs to external tools. StackOne's Kustomer MCP server ships with 53 pre-built actions, fully extensible via the Connector Builder — plus managed authentication, prompt injection defense, observability, and agent execution runtime. Connect it from MCP clients like Claude Desktop, Claude Code, Cursor, Goose, and VS Code, or from agent frameworks like OpenAI Agents SDK, LangChain, and Vercel AI SDK.
All Kustomer MCP Tools
Every action from Kustomer's API, ready for your agent. Create, read, update, and delete — scoped to exactly what you need.
Customers
- Create Customer
Create a new customer
- List Customers
Retrieve a paginated list of customers
- Update Customer
Update an existing customer by ID (full replacement)
- Delete Customer
Delete a customer by ID
Conversations
- Create Conversation
Create a new conversation associated with an existing customer
- List Conversations
Retrieve a paginated list of conversations
- Update Conversation
Update a conversation by replacing its fields (PUT semantics)
- Delete Conversation
Delete a conversation by ID
Messages
- Create Message
Create a new message. Requires channel, app (channel integration identifier — not a Kustomer ID), and direction. Use list_customers to get a customer ID and list_conversations to get a conversation ID if associating the message.
- List Messages
Retrieve a paginated list of messages
Message By IDs
- Get Message By ID
Retrieve a single message by ID
- Update Message By ID
Replace a message by ID using full PUT semantics (replaces entire resource; use update_message_attributes_by_id for partial PATCH updates)
User By IDs
- Get User By ID
Retrieve a single user by their unique ID
- Update User By ID
Update an existing org user's profile or account settings
Notes
- Create Note
Create a new note
- List Notes
Retrieve a paginated list of notes
Note By IDs
- Get Note By ID
Retrieve a single note by ID
- Update Note By ID
Replace a note by ID
- Delete Note By ID
Delete a note by ID
Klass By IDs
- Get Klass By ID
Retrieve a single klass by ID
- Update Klass By ID
Update an existing klass by ID
Klass
- Create Klass
Create a new klass
- Delete Klass
Delete a klass by ID
KObject (custom Object) By IDs
- Get KObject (custom Object) By ID
Retrieve a single kobject by klass name and ID. Use list_klasses to get the klass name and get_kobjects to get the kobject ID.
- Update KObject (custom Object) By ID
Update an existing kobject by klass name and ID. Use list_klasses to get the klass name and get_kobjects to get the kobject ID.
- Delete KObject (custom Object) By ID
Delete a kobject by klass name and ID. Use list_klasses to get the klass name and get_kobjects to get the kobject ID.
Sub-Status
- Update Sub-Status
Update an existing sub-status by ID
- Delete Sub-Status
Delete a sub-status by ID
Other (25)
- Create / Invite New User
Create an account for a new org user and send an invitation email
- Create KObject
Create a new kobject (custom object instance) within a klass. Use list_klasses to get the klass name (slug) required as a path parameter.
- Create Company
Create a new company
- Create Sub-status
Create a new sub-status
- Get Customer By ID
Retrieve a single customer by ID
- Get Conversation By ID
Retrieve a single conversation by ID
- Get Users
Retrieve a paginated list of org users
- Get Multiple Users By IDs
Retrieve multiple users by a comma-separated list of IDs
- Get Klasses
Retrieve a paginated list of klasses
- Get KObjects (custom Objects)
Retrieve a paginated list of kobjects for a klass. Use list_klasses first to get the klass name (slug) required as a path parameter.
- Get Companies
Retrieve a paginated list of companies
- Get Company By ID
Retrieve a single company by its unique ID
- Get Sub-statuses
Retrieve a paginated list of sub-statuses
- Get Sub-Status By ID
Retrieve a single sub-status by its unique ID
- Query Events Associated With Your Organization
Retrieve audit log events for your organization
- Update Customer Attributes
Partially update a customer's attributes by ID
- Update Conversation Attributes
Partially update a conversation's attributes using PATCH semantics
- Update Message Attributes By ID
Partially update message attributes by ID
- Update Note Attributes By ID
Partially update note attributes by ID
- Update Company Attributes
Update an existing company by ID
- Bulk Create Conversations
Create multiple conversations in a single request
- Bulk Batch Update Conversations
Update multiple conversations in a single request
- Bulk Delete Conversations
Delete multiple conversations in a single request
- Find Company KObjects (custom Objects)
Retrieve KObjects of a specific Klass associated with a company. Use list_companies to get the company ID and list_klasses to get the klass name.
- Find Customer KObjects (custom Objects)
Retrieve KObjects of a specific Klass associated with a customer. Use list_customers to get the customer ID and list_klasses to get the klass name.
Kustomer AI Agent Use Cases
Connect your AI agent to Kustomer and help your team scale the support operations they run by hand today.
Use StackOne to connect your AI agent to your helpdesk, CRM, and messaging tools to automate ticket triage and priority routing.
ViewUse StackOne to connect your AI agent to your telephony, CRM, and messaging tools to automate voice call summarization and CRM logging.
ViewUse StackOne to connect your AI agent to your CRM, email, and calendar tools to automate post-demo follow-up.
ViewSet Up Your Kustomer MCP Server in Minutes
One endpoint. Any framework. Your agent is talking to Kustomer in under 10 lines of code.
Agent Frameworks
{
"mcpServers": {
"stackone": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.stackone.com/mcp?x-account-id=<account_id>",
"--header",
"Authorization: Basic <YOUR_BASE64_TOKEN>"
]
}
}
}Check More Customer Support MCP Servers
113+ actions
104+ actions
92+ actions
77+ actions
73+ actions
69+ actions
67+ actions
Platform Resources
MCP Code Mode: Keeping Tool Responses Out of Agent Context
Anthropic's code_execution processes data already in context. Custom MCP code mode keeps raw tool responses in a sandbox. 14K tokens vs 500.
11 min
Comparing BM25, TF-IDF, and Hybrid Search for MCP Tool Discovery
Benchmarking BM25, TF-IDF, and hybrid search for MCP tool discovery across 916 tools. The 80/20 TF-IDF/BM25 hybrid hits 21% Top-1 accuracy in under 1ms.
10 min
Indirect Prompt Injection Defense for MCP Tools: A Technical Guide
MCP tools that read emails, CRM records, and tickets are indirect prompt injection vectors. Here's how we built a two-tier defense that scans tool results in ~11ms.
12 min
MCP vs A2A: Architecture, Security, and When to Use Each
MCP vs A2A: what each protocol standardizes, how they differ, their shared security risks including indirect prompt injection, and when to use one, both, or a hybrid architecture.
12 min
MCP vs API: What 200+ Connector Builds Taught Us
MCP wraps APIs, it doesn't replace them. After building 200+ connectors that serve both, here's when each approach wins.
14 min read
Kustomer MCP Server FAQ
Does StackOne have a Kustomer MCP server?
Kustomer MCP server vs direct API integration — what's the difference?
How does Kustomer authentication work for AI agents?
origin_owner_id.Are Kustomer MCP tools vulnerable to prompt injection?
What is the context bloat of a Kustomer agent and how do I avoid it?
Can I limit which actions my Kustomer agent can access?
Can I create custom agent actions for my Kustomer MCP server?
When should I NOT use a Kustomer MCP server?
What AI frameworks and AI clients does the StackOne Kustomer MCP server support?
Put your AI agents to work
All the tools you need to build and scale AI agent integrations, with best-in-class connectivity, execution, and security.