AgentHubAgentHub

Jitbit Helpdesk

MCP ServerMCP Registry官方收录

io.github.jitbit/jitbit-helpdesk · v2.0.0

MCP server for Jitbit Helpdesk: search, list, read, and reply to support tickets from AI assistants.

概览

Jitbit Helpdesk 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "jitbit-helpdesk": {
      "command": "npx",
      "args": [
        "-y",
        "jitbit-helpdesk-mcp"
      ],
      "env": {
        "JITBIT_URL": "<JITBIT_URL>",
        "JITBIT_TOKEN": "<JITBIT_TOKEN>"
      }
    }
  }
}

环境变量

JITBIT_URL必填

Base URL of your Jitbit Helpdesk instance

JITBIT_TOKEN必填secret

API token from your Jitbit user profile

相关资源

统一 Manifest

{
  "id": "io.github.jitbit/jitbit-helpdesk",
  "type": "mcp-server",
  "version": "2.0.0",
  "displayName": "Jitbit Helpdesk",
  "description": "MCP server for Jitbit Helpdesk: search, list, read, and reply to support tickets from AI assistants.",
  "repository": {
    "url": "https://github.com/jitbit/jitbit-helpdesk-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "jitbit-helpdesk-mcp",
        "version": "2.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "JITBIT_URL",
            "description": "Base URL of your Jitbit Helpdesk instance",
            "isRequired": true
          },
          {
            "name": "JITBIT_TOKEN",
            "description": "API token from your Jitbit user profile",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://{helpdesk_host}/api/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jitbit/jitbit-helpdesk",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jitbit%2Fjitbit-helpdesk/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Jitbit Helpdesk — MCP Server 安装与配置 · AgentHub