hit-mcp
Read-only MCP server for the HIT ticket management system that lists queues, searches/fetches ticket details, and lists ticket templates.
README
hit-mcp
An MCP server that connects an AI agent (Claude, Cursor, VS Code, etc.) to HIT — Devpeak's ticket management system. Read only: the agent can browse ticket queues, search tickets, read full ticket history, and use ticket templates — but it cannot modify any data.
Quick start
-
Install the package globally:
npm install --global @devpeak/hit-mcp -
Generate an API token in HIT: click your avatar (top right) → Account settings → Security → API tokens → Create API token.
-
Configure your MCP client with
HIT_BASE_URL(your HIT instance, e.g.https://support.example.com) andHIT_API_TOKEN(the token from step 2). See examples below.
Configuration per client
Claude Code
claude mcp add hit -e HIT_BASE_URL=https://your-domain-here -e HIT_API_TOKEN=your-token -- npx hit-mcp
Cursor
Add the following to .cursor/mcp.json:
{
"mcpServers": {
"hit": {
"command": "hit-mcp",
"env": {
"HIT_BASE_URL": "https://support.example.com",
"HIT_API_TOKEN": "..."
}
}
}
}
OpenCode
Add a new key under "mcp" in ~/.config/opencode/opencode.jsonc, something like:
{
"mcp": {
"your-server-name": {
"type": "local",
"command": ["npx", "hit-mcp"],
"environment": {
"HIT_BASE_URL": "https://support.example.com",
"HIT_API_TOKEN": "..."
}
}
}
}
What can the agent do?
| Tool | Description |
|---|---|
list_queues |
List all support queues you have access to — get an overview of which areas (IT, maintenance, administration, etc.) exist. |
list_tickets |
Browse and search tickets in a queue. Filter by open/closed status, search by subject, paginate. Each ticket links to HIT's web interface. |
get_ticket |
Fetch full details of a single ticket — description, priority, due dates, history. |
list_templates |
List ticket templates for a queue — useful for seeing what standard workflows are available. |
Note: All access is read-only — the agent can not create, update, or delete tickets.
Building and developing locally
npm install
npm run build
Copy .env.example to .env, fill in HIT_BASE_URL and HIT_API_TOKEN, then run:
npm start
The server starts on stdio. Point your MCP client at the absolute path:
{
"mcpServers": {
"hit": {
"command": "node",
"args": ["/path/to/hit-mcp/dist/index.js"],
"env": {
"HIT_BASE_URL": "https://support.example.com",
"HIT_API_TOKEN": "..."
}
}
}
}
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.