ServiceNow MCP Server
Enables Claude to interact with ServiceNow instances for incident management, knowledge base search, and JWT authentication.
README
ServiceNow MCP Server
A Model Context Protocol (MCP) server that enables Claude to interact with ServiceNow instances. This server provides tools for querying incidents, searching knowledge base articles, and retrieving specific ServiceNow data.
Features
- š« Incident Management: Query and retrieve ServiceNow incidents with various filters
- š Knowledge Base: Search and retrieve knowledge base articles
- š Specific Article Lookup: Get detailed information for specific KB articles
- š§ Connection Testing: Verify ServiceNow connectivity
- š JWT Authentication: Secure token-based authentication with automatic refresh
- š ļø Token Management: Generate, validate, and refresh JWT tokens
- š Comprehensive Logging: Detailed logging for troubleshooting
Prerequisites
- Python 3.8 or higher
- ServiceNow instance with API access
- Claude Desktop application
Installation
-
Clone or navigate to the project directory:
cd /Users/vayyagari/PycharmProjects/snow_mcp_server_gd -
Activate the virtual environment:
source .venv/bin/activate -
Install dependencies:
pip install -r requirements.txt
Configuration
1. ServiceNow Authentication Configuration
The server supports two authentication methods:
JWT Authentication (Recommended)
Create a .env file in the project root:
# Copy the template file
cp env_template.txt .env
# Edit with your actual credentials
nano .env
Initial Setup with Username/Password:
SERVICENOW_INSTANCE_URL=https://your-instance.service-now.com
SERVICENOW_USERNAME=your_username_here
SERVICENOW_PASSWORD=your_password_here
LOG_LEVEL=INFO
Production Setup with JWT Tokens:
SERVICENOW_INSTANCE_URL=https://your-instance.service-now.com
SERVICENOW_JWT_TOKEN=your_jwt_access_token_here
SERVICENOW_REFRESH_TOKEN=your_jwt_refresh_token_here
JWT_SECRET_KEY=your_secure_secret_key_here
LOG_LEVEL=INFO
2. Claude Desktop Configuration
Option 1: Environment Variables in Claude Config
Update your Claude Desktop configuration file with the server details and credentials:
Location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
{
"mcpServers": {
"servicenow": {
"command": "python",
"args": ["/Users/vayyagari/PycharmProjects/snow_mcp_server_gd/server.py"],
"env": {
"SNOW_INSTANCE_URL": "https://your-instance.service-now.com",
"SNOW_USERNAME": "your_username_here",
"SNOW_PASSWORD": "your_password_here"
}
}
}
}
Option 2: Using .env file (Recommended)
Install python-dotenv and modify the server to load from .env:
{
"mcpServers": {
"servicenow": {
"command": "/Users/vayyagari/PycharmProjects/snow_mcp_server_gd/.venv/bin/python",
"args": ["/Users/vayyagari/PycharmProjects/snow_mcp_server_gd/server.py"],
"cwd": "/Users/vayyagari/PycharmProjects/snow_mcp_server_gd"
}
}
}
Usage
Starting the Server
The server will start automatically when Claude Desktop connects to it. You can also test it manually:
# Activate virtual environment
source .venv/bin/activate
# Run the server
python server.py
Available Tools
ServiceNow Data Tools
1. Get ServiceNow Incidents
# Example usage in Claude:
get_servicenow_incidents({
"state": "New",
"priority": "1",
"limit": 10
})
2. Search Knowledge Base
# Example usage in Claude:
search_knowledge_base({
"search_term": "password reset",
"limit": 5
})
3. Get Specific Knowledge Article
# Example usage in Claude:
get_knowledge_article({
"article_id": "KB0010001"
})
4. Test Connection
# Example usage in Claude:
test_connection()
JWT Authentication Tools
5. Generate JWT Token
# Generate initial JWT tokens using username/password
generate_jwt_token({
"username": "your_username",
"password": "your_password",
"instance_url": "https://your-instance.service-now.com"
})
6. Validate JWT Token
# Validate and get information about a JWT token
validate_jwt_token({
"token": "your_jwt_token_here"
})
7. Refresh JWT Token
# Generate new access token using refresh token
refresh_jwt_token({
"refresh_token": "your_refresh_token_here"
})
8. Get JWT Token Info
# Get token details without full validation
get_jwt_token_info({
"token": "your_jwt_token_here"
})
JWT Authentication Workflow
Setting Up JWT Authentication
-
Initial Setup (First Time)
# Set up initial credentials in .env SERVICENOW_INSTANCE_URL=https://your-instance.service-now.com SERVICENOW_USERNAME=your_username SERVICENOW_PASSWORD=your_password -
Generate JWT Tokens
# Use Claude to generate tokens generate_jwt_token({ "username": "your_username", "password": "your_password" }) -
Update Configuration for Production
# Update .env with generated tokens SERVICENOW_JWT_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9... SERVICENOW_REFRESH_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9... # Optional: Remove username/password for security # SERVICENOW_USERNAME= # SERVICENOW_PASSWORD= -
Token Management
- Tokens expire automatically (default: 24 hours for access tokens)
- Use
validate_jwt_token()to check token status - Use
refresh_jwt_token()to renew expired tokens - Use
get_jwt_token_info()to inspect token details
JWT Security Best Practices
- ā Use environment variables for token storage
- ā Rotate tokens regularly using refresh functionality
- ā Set strong JWT secret keys in production
- ā Monitor token expiration and refresh proactively
- ā Never commit tokens to version control
- ā Don't share tokens between environments
- ā Avoid logging tokens in production
Troubleshooting
Common Issues
-
"Claude is not connecting"
- Verify Claude Desktop configuration file path and syntax
- Check that Python path in config matches your virtual environment
- Ensure all credentials are correctly set
-
ServiceNow Authentication Errors
- JWT Token Issues:
- Verify JWT token hasn't expired using
validate_jwt_token() - Refresh expired tokens using
refresh_jwt_token() - Check JWT secret key is set correctly
- Verify JWT token hasn't expired using
- Username/Password Issues:
- Verify your ServiceNow credentials in
.envfile - Check that your ServiceNow user has API access permissions
- Confirm the instance URL format (should include https://)
- Verify your ServiceNow credentials in
- JWT Token Issues:
-
Module Import Errors
- Ensure virtual environment is activated
- Install all requirements:
pip install -r requirements.txt - Check that
gd-servicenow-apiis properly installed
-
Permission Denied Errors
- Ensure the server.py file is executable
- Check file permissions:
chmod +x server.py
Debug Mode
Enable debug logging by setting in your .env file:
LOG_LEVEL=DEBUG
Testing the Server
Test the server connection manually:
# Activate environment
source .venv/bin/activate
# Test the server
python -c "import asyncio; from server import test_connection; print(asyncio.run(test_connection()))"
Development
Project Structure
snow_mcp_server_gd/
āāā .venv/ # Virtual environment
āāā server.py # Main MCP server
āāā requirements.txt # Python dependencies
āāā claude_desktop_config.json # Claude configuration example
āāā .env.example # Environment variables template
āāā README.md # This file
Adding New Tools
To add new ServiceNow tools:
- Define a new Pydantic model for request validation
- Create a new
@server.tool()decorated function - Import and use appropriate ServiceNow API functions
- Handle errors and return structured responses
Security Notes
- Never commit
.envfiles with real credentials to version control - Use environment variables or secure credential management
- Ensure ServiceNow user has minimal required permissions
- Consider using OAuth or certificate-based authentication for production
Support
- Check ServiceNow API documentation for field names and query options
- Review MCP protocol documentation at https://modelcontextprotocol.io/
- Enable debug logging for detailed error information
License
This project is licensed under the MIT License.
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.