
Jitbit Helpdesk
- 2 repo stars
- Updated April 29, 2026
- jitbit/jitbit-helpdesk-mcp
Jitbit Helpdesk is a MCP server that lets AI assistants search, list, read, and reply to Jitbit support tickets over HTTP or stdio.
About
Jitbit Helpdesk MCP connects AI coding agents to your Jitbit instance so you can triage and respond to customer tickets from the same session where you fix bugs. developers who run support in Jitbit—whether on yourcompany.jitbit.com or a custom host—get MCP tools to search the queue, open ticket details, and send replies using a profile API token. Registration supports remote streamable-http against https://{helpdesk_host}/api/mcp plus stdio via JITBIT_URL and JITBIT_TOKEN. You still own tone and escalation policy; the server is a bridge, not a replacement for your support playbook.
- Search and list Jitbit tickets from streamable HTTP or stdio MCP transports
- Read full ticket threads and post replies through the Helpdesk API
- Configurable host via helpdesk_host or JITBIT_URL for self-hosted or Jitbit Cloud
- Bearer API token auth from the Jitbit user profile (v2.0.0 server schema)
- npm package jitbit-helpdesk-mcp for local stdio wiring in Claude Code or Cursor
Jitbit Helpdesk by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env JITBIT_URL=YOUR_JITBIT_URL --env JITBIT_TOKEN=YOUR_JITBIT_TOKEN jitbit-helpdesk-mcp -- npx -y jitbit-helpdesk-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Package | jitbit-helpdesk-mcp |
| Transport | STDIO, HTTP |
| Auth | Required |
| Last updated | April 29, 2026 |
| Repository | jitbit/jitbit-helpdesk-mcp ↗ |
What it does
Let Claude or Cursor search, read, and draft replies on Jitbit Helpdesk tickets without leaving the editor.
Who is it for?
Best when you already use Jitbit Helpdesk and want agents to draft or post ticket replies with live ticket data.
Skip if: Skip if you're on Zendesk, Intercom, or email-only support with no Jitbit instance and API token.
What you get
After you register the server with your host and Bearer token, agents can pull ticket context and draft or send replies without leaving Claude Code or Cursor.
- MCP tools to search, list, read, and reply on Jitbit tickets
- Remote or stdio connection profile wired to your Helpdesk host
By the numbers
- Server version 2.0.0 per MCP registry schema
- Two connection modes: streamable-http remote and stdio npm package jitbit-helpdesk-mcp
- Required env: JITBIT_URL and JITBIT_TOKEN for local stdio transport
README.md
Jitbit Helpdesk MCP Server
An MCP (Model Context Protocol) server that lets AI assistants search and read support tickets from Jitbit Helpdesk. Works with both SaaS and on-premise installations.
⚠️ Use the hosted HTTP endpoint when possible. Jitbit ships a built-in HTTP MCP endpoint at
/api/mcpon all SaaS and on-premise installs running version 11.21 or later. That is the preferred way to connect AI assistants to Jitbit — no local install, always in sync with Jitbit releases. See the Jitbit MCP docs. Starting with 2.x, this npm package is a thin stdio proxy to that same endpoint, for clients that don't yet support remote HTTP MCP servers. Jitbit 11.21 or later is required. If you're on an older on-premise version, stay onjitbit-helpdesk-mcp@1.x.
Setup
Two options:
- Hosted HTTP endpoint (recommended) — connect your MCP client directly to Jitbit's
/api/mcp. Use this whenever your client supports HTTP MCP transport. - Local npm package (stdio proxy) — this repo. Use it when your MCP client only supports stdio transport. It forwards every request to
{JITBIT_URL}/api/mcpand adds nothing of its own.
Option 1: Hosted HTTP endpoint
Claude Code
claude mcp add --transport http jitbit-helpdesk https://yourcompany.jitbit.com/api/mcp \
--header "Authorization: Bearer your-api-token"
Claude Desktop, Cursor, Windsurf
{
"mcpServers": {
"jitbit-helpdesk": {
"type": "http",
"url": "https://yourcompany.jitbit.com/api/mcp",
"headers": {
"Authorization": "Bearer your-api-token"
}
}
}
}
Option 2: Local npm package (stdio proxy)
Claude Code
claude mcp add jitbit-helpdesk \
-e JITBIT_URL=https://yourcompany.jitbit.com \
-e JITBIT_TOKEN=your-api-token \
-- npx -y jitbit-helpdesk-mcp
Claude Desktop, Cursor, Windsurf
Add to your config file:
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows) - Cursor: Settings > MCP Servers
- Windsurf: Settings > MCP Servers
{
"mcpServers": {
"jitbit-helpdesk": {
"command": "npx",
"args": ["-y", "jitbit-helpdesk-mcp"],
"env": {
"JITBIT_URL": "https://yourcompany.jitbit.com",
"JITBIT_TOKEN": "your-api-token"
}
}
}
}
Environment Variables
| Variable | Required | Description |
|---|---|---|
JITBIT_URL |
Yes | Base URL of your Jitbit instance (SaaS: https://yourcompany.jitbit.com, on-prem: your server URL) |
JITBIT_TOKEN |
Yes | API token — see below |
Getting your API token
- Log in to your Jitbit Helpdesk
- Go to your User Profile (click your avatar in the top right)
- Click the "API Token" button
- Copy the token and use it as the
JITBIT_TOKENvalue
Tools
The proxy exposes whatever tools the connected Jitbit instance advertises at /api/mcp — typically ticket search, list, and read, plus anything Jitbit adds in later releases. Use your MCP client's tool listing (or the Jitbit MCP docs) for the up-to-date catalog.
Development
npm install
npm run build
License
MIT
Recommended MCP Servers
How it compares
Jitbit-specific MCP bridge, not a generic agent skill or full helpdesk replacement.
FAQ
Who is Jitbit Helpdesk MCP for?
Developers and small teams that run customer support in Jitbit and use Claude Code, Cursor, or other MCP clients to speed up ticket triage and replies.
When should I use Jitbit Helpdesk MCP?
Use it during daily support when you want the agent to search tickets, summarize threads, or draft replies while you ship fixes in the same workspace.
How do I add Jitbit Helpdesk MCP to my agent?
Create an API token in your Jitbit user profile, set JITBIT_URL and JITBIT_TOKEN for stdio or point remotes at https://{your-host}/api/mcp with Authorization Bearer, then add the server in your MCP config (npm jitbit-helpdesk-mcp for local use).