forked from elieworkspace/rocketchat-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.15 KB
/
Copy pathserver.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.millerchou/rocketchat-mcp",
"description": "MCP server for Rocket.Chat — messages, DMs, search, files, and channels over stdio",
"version": "0.1.0",
"repository": {
"url": "https://github.com/millerchou/rocketchat-mcp",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "rocketchat-mcp",
"version": "0.1.0",
"runtimeHint": "uvx",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "ROCKETCHAT_SERVER_URL",
"description": "RocketChat workspace URL, e.g. https://chat.example.com",
"isRequired": true
},
{
"name": "ROCKETCHAT_USER_ID",
"description": "RocketChat user ID",
"isRequired": true,
"isSecret": true
},
{
"name": "ROCKETCHAT_AUTH_TOKEN",
"description": "RocketChat personal access token",
"isRequired": true,
"isSecret": true
}
]
}
]
}