ServiceNow MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ServiceNow MCP Servershow me all high priority incidents opened today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: ServiceNow MCP Server
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_gdActivate the virtual environment:
source .venv/bin/activateInstall 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 .envInitial 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=INFOProduction 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=INFO2. 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.pyAvailable 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_passwordGenerate 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 statusUse
refresh_jwt_token()to renew expired tokensUse
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
Username/Password Issues:
Verify your ServiceNow credentials in
.envfileCheck that your ServiceNow user has API access permissions
Confirm the instance URL format (should include https://)
Module Import Errors
Ensure virtual environment is activated
Install all requirements:
pip install -r requirements.txtCheck 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=DEBUGTesting 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 fileAdding New Tools
To add new ServiceNow tools:
Define a new Pydantic model for request validation
Create a new
@server.tool()decorated functionImport and use appropriate ServiceNow API functions
Handle errors and return structured responses
Security Notes
Never commit
.envfiles with real credentials to version controlUse 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vayyagari-godaddy/snow_mcp_server_gd_VA'
If you have feedback or need assistance with the MCP directory API, please join our Discord server