-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.26 KB
/
server.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Codeturion/codesurface",
"version": "0.5.0",
"description": "Indexes your codebase's public API and serves it via compact MCP tool responses.",
"repository": {
"url": "https://github.com/Codeturion/codesurface",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "codesurface",
"version": "0.5.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "search",
"description": "Search the indexed API by keyword. Find classes, methods, properties, fields, and events."
},
{
"name": "get_signature",
"description": "Look up the exact signature of an API member by name or FQN."
},
{
"name": "get_class",
"description": "Get a complete reference card for a class with all public members."
},
{
"name": "get_stats",
"description": "Get a quick overview of the indexed codebase."
},
{
"name": "reindex",
"description": "Incrementally update the index by re-parsing only changed, new, or deleted files."
}
]
}