-
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.04 KB
/
Copy pathserver.json
File metadata and controls
37 lines (37 loc) · 1.04 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-09-29/server.schema.json",
"name": "io.github.linze0721/notace-tool-rs",
"description": "MCP server that gives AI coding agents grounded codebase context, prompt enhancement, web search, and mid-task advice from a Finnian/ACE backend",
"version": "1.0.2",
"repository": {
"url": "https://github.com/linze0721/notace-tool-rs",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "not-ace-tool-rs",
"version": "1.0.2",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "named",
"name": "--base-url",
"description": "Finnian/ACE server base URL",
"isRequired": true,
"format": "string"
},
{
"type": "named",
"name": "--token",
"description": "Finnian/ACE API token",
"isRequired": true,
"isSecret": true,
"format": "string"
}
]
}
]
}