ITSM Integration
STDIOUnified interface for LLMs to interact with multiple ITSM systems using Model Context Protocol.
Unified interface for LLMs to interact with multiple ITSM systems using Model Context Protocol.
A Model Context Protocol (MCP) implementation for IT Service Management (ITSM) tools, designed to work with Smithery.
This project provides a unified interface for LLMs to interact with multiple ITSM systems (ServiceNow, Jira, Zendesk, Ivanti Neurons for ITSM, and Cherwell) using the Model Context Protocol (MCP). Instead of requiring LLMs to learn different APIs for each ITSM system, this integration provides a standardized set of tools that work across all systems.
This is an MCP-compliant server that implements the Model Context Protocol specification. It provides a standardized interface for Large Language Models to interact with multiple ITSM systems through a unified set of tools.
The server can be used directly with any MCP-compatible client, including:
To inspect the server locally:
npx @modelcontextprotocol/inspector node index.js
Clone the repository:
git clone https://github.com/yourusername/mcp-itsm.git
cd mcp-itsm
Install dependencies:
npm install
Configure your ITSM credentials (see Configuration section)
Deploy to Smithery:
smithery deploy
Create a .env
file with your ITSM credentials:
# ServiceNow
SERVICENOW_INSTANCE=your-instance
SERVICENOW_USERNAME=your-username
SERVICENOW_PASSWORD=your-password
# Jira
JIRA_URL=https://your-instance.atlassian.net
JIRA_USERNAME=your-username
JIRA_API_TOKEN=your-api-token
# Zendesk
ZENDESK_URL=https://your-instance.zendesk.com
ZENDESK_EMAIL=your-email
ZENDESK_API_TOKEN=your-api-token
# Ivanti Neurons for ITSM
IVANTI_URL=https://your-instance.ivanti.com
IVANTI_CLIENT_ID=your-client-id
IVANTI_CLIENT_SECRET=your-client-secret
IVANTI_TENANT_ID=your-tenant-id
# Cherwell
CHERWELL_URL=https://your-instance.cherwell.com
CHERWELL_CLIENT_ID=your-client-id
CHERWELL_AUTH_MODE=internal
CHERWELL_USERNAME=your-username
CHERWELL_PASSWORD=your-password
The smithery.yaml
file configures how your tools are deployed to Smithery:
name: mcp-itsm description: MCP ITSM Tools for ticket management across multiple systems version: 1.0.0 tools: ./tools.json command: node index.js
This integration provides the following tools:
See tools.json
for the complete tool definitions.
Once deployed to Smithery, LLMs can use these tools to interact with your ITSM systems. Here's an example of how an LLM might create a ticket:
User: "I need to report a bug in our accounting software"
LLM: (Makes a tool call)
{
"type": "tool_call",
"data": {
"name": "create_ticket",
"parameters": {
"title": "Bug in accounting software",
"description": "User reported an issue with the accounting software",
"priority": "medium",
"system": "jira"
}
}
}
Response:
{
"type": "tool_response",
"data": {
"name": "create_ticket",
"content": {
"id": "ACCT-123",
"status": "open",
"url": "https://your-instance.atlassian.net/browse/ACCT-123"
}
}
}
This project includes several debugging tools:
debug_smithery_mcp.bat
: Diagnoses MCP-specific issues with Smitheryforce_redeploy_smithery.bat
: Forces redeployment with MCP configurationtest_tools.js
: Tests MCP tool calls locallyContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.