-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathserver.json
More file actions
82 lines (82 loc) · 2.34 KB
/
Copy pathserver.json
File metadata and controls
82 lines (82 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.aartiq/nowaikit",
"title": "ServiceNow MCP Server (NowAIKit)",
"description": "ServiceNow MCP server: 450+ tools for Claude, ChatGPT, Copilot & any AI. Read-only by default.",
"version": "4.9.1",
"websiteUrl": "https://servicenow-mcp.com",
"repository": {
"url": "https://github.com/aartiq/servicenow-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "nowaikit",
"version": "4.9.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SERVICENOW_INSTANCE_URL",
"description": "Your ServiceNow instance URL (e.g. https://yourinstance.service-now.com)",
"required": true
},
{
"name": "SERVICENOW_AUTH_METHOD",
"description": "Authentication method: 'basic' or 'oauth'",
"required": true
},
{
"name": "SERVICENOW_BASIC_USERNAME",
"description": "ServiceNow username (for basic auth)"
},
{
"name": "SERVICENOW_BASIC_PASSWORD",
"description": "ServiceNow password (for basic auth)"
},
{
"name": "WRITE_ENABLED",
"description": "Enable write operations (true/false, default: false)"
},
{
"name": "SCRIPTING_ENABLED",
"description": "Enable scripting operations (true/false, default: false)"
},
{
"name": "CMDB_WRITE_ENABLED",
"description": "Enable CMDB write operations (true/false, default: false)"
},
{
"name": "NOW_ASSIST_ENABLED",
"description": "Enable Now Assist AI features (true/false, default: false)"
},
{
"name": "ATF_ENABLED",
"description": "Enable ATF test execution (true/false, default: false)"
},
{
"name": "MCP_TOOL_PACKAGE",
"description": "Role-based tool package: full, service_desk, platform_developer, etc."
},
{
"name": "TRANSPORT",
"description": "Transport mode: stdio (default), sse, or http"
},
{
"name": "PORT",
"description": "HTTP server port (default: 3000, for sse/http transport)"
},
{
"name": "NOWAIKIT_API_KEY",
"description": "Bearer token for API authentication (sse/http transport)"
},
{
"name": "FLUENT_ENABLED",
"description": "Enable Fluent SDK tools (true/false, default: false)"
}
]
}
]
}