-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
38 lines (38 loc) · 1.13 KB
/
server.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.noticedso/cli",
"description": "Search your developer network and trace connection paths via GitHub & LinkedIn.",
"version": "0.3.2",
"repository": {
"url": "https://github.com/noticedso/cli",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@noticed/cli",
"version": "0.3.2",
"transport": { "type": "stdio" },
"runtimeHint": "npx",
"runtimeArguments": [
{ "type": "positional", "value": "-y" }
],
"packageArguments": [
{ "type": "positional", "value": "mcp" }
],
"environmentVariables": [
{
"name": "NOTICED_API_URL",
"description": "Base URL of the noticed instance. Defaults to https://www.noticed.so — only set this if you self-host noticed.",
"isRequired": false
},
{
"name": "NOTICED_API_KEY",
"description": "API key minted at /dashboard/api-keys",
"isRequired": true,
"isSecret": true
}
]
}
]
}