-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
37 lines (37 loc) · 1.14 KB
/
server.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.requesttracker/mcp-server-rt",
"title": "RT (Request Tracker)",
"description": "Connect Claude to a live RT instance — search tickets, create and update tickets, add comments and replies.",
"version": "0.2.1",
"repository": {
"url": "https://github.com/bestpractical/mcp-server-rt",
"source": "github"
},
"homepage": "https://github.com/bestpractical/mcp-server-rt#readme",
"license": "GPL-2.0",
"packages": [
{
"registryType": "npm",
"identifier": "mcp-server-rt",
"version": "0.2.1",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "RT_URL",
"description": "Base URL of your RT instance (e.g. https://rt.example.com)",
"isRequired": true
},
{
"name": "RT_TOKEN",
"description": "RT authentication token. Create one in RT under: Logged in as → Settings → Auth Tokens.",
"isRequired": true,
"isSecret": true
}
]
}
]
}