servicenow mcp ai for VS Code
io.github.ivanbbaev/servicenow-mcp-ai
ServiceNow MCP server — 67 tools over the full REST surface, every auth method, flows, diagrams.
client:VS Code
transport:stdio
runtime:npm
Install servicenow mcp ai in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sn-instance",
"description": "SN_INSTANCE",
"password": true
},
{
"type": "promptString",
"id": "sn-auth",
"description": "SN_AUTH",
"password": true
},
{
"type": "promptString",
"id": "sn-user",
"description": "SN_USER",
"password": true
},
{
"type": "promptString",
"id": "sn-password",
"description": "SN_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "sn-api-key",
"description": "SN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sn-tool-packages",
"description": "SN_TOOL_PACKAGES",
"password": true
}
],
"servers": {
"servicenow-mcp-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"servicenow-mcp-ai"
],
"env": {
"SN_INSTANCE": "${input:sn-instance}",
"SN_AUTH": "${input:sn-auth}",
"SN_USER": "${input:sn-user}",
"SN_PASSWORD": "${input:sn-password}",
"SN_API_KEY": "${input:sn-api-key}",
"SN_TOOL_PACKAGES": "${input:sn-tool-packages}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs