Skip to main content
Glama
jitbit

jitbit-helpdesk-mcp

Official
by jitbit

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
JITBIT_URLYesBase URL of your Jitbit instance (SaaS: https://yourcompany.jitbit.com, on-prem: your server URL)
JITBIT_TOKENYesAPI token obtained from your Jitbit User Profile

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
jitbit_search_ticketsB

Search for tickets in Jitbit Helpdesk by keyword or phrase.

Args:

  • query (string): Search query to match against ticket subjects and bodies

  • limit (number): Maximum results to return, 1-100 (default: 25)

  • offset (number): Number of results to skip for pagination (default: 0)

Returns: List of matching tickets with ID, subject, status, priority, category, submitter, and assignee.

jitbit_list_ticketsB

List and filter tickets in Jitbit Helpdesk.

Args:

  • mode (string, optional): Filter mode — "all", "unanswered", "updated"

  • status (string, optional): Filter by ticket status, passed to the Jitbit API as-is

  • limit (number): Maximum results to return, 1-100 (default: 25)

  • offset (number): Number of results to skip for pagination (default: 0)

Returns: List of tickets with ID, subject, status, priority, category, submitter, and assignee.

jitbit_get_ticketA

Get a single ticket with its full conversation thread from Jitbit Helpdesk.

Args:

  • ticketId (number): The ticket ID to retrieve

Returns: Full ticket details including subject, body, status, priority, category, submitter, assignee, tags, and complete comment history.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_ticket retrieves a single ticket with full details, list_tickets provides filtered listings with pagination, and search_tickets performs keyword-based searches. There is no overlap in functionality—an agent can easily choose the right tool based on whether they need a specific ticket, a filtered list, or a search.

Naming Consistency5/5

All tools follow a consistent jitbit_verb_noun pattern (jitbit_get_ticket, jitbit_list_tickets, jitbit_search_tickets). The naming is uniform, using snake_case throughout with clear verbs (get, list, search) that accurately describe each action.

Tool Count3/5

With only 3 tools, the server feels thin for a helpdesk domain that typically involves ticket management workflows. While the tools cover basic retrieval and listing, the count is borderline low for operations like creating, updating, or closing tickets, which are common in such systems.

Completeness2/5

The tool set is severely incomplete for a helpdesk server. It only provides read-only operations (get, list, search), with no ability to create, update, assign, or close tickets. This leaves significant gaps that will cause agent failures when trying to perform common helpdesk tasks beyond querying existing data.

Maintenance

ActivityInactive
ResponsivenessNo issues