Skip to content

Commit c13e7f2

Browse files
committed
Fix server.json for MCP registry schema
- Add $schema field - Shorten description to under 100 chars - Use registryType/identifier instead of registry_name/name - Add registryBaseUrl, runtimeHint, transport
1 parent 8e8615f commit c13e7f2

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

server.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
23
"name": "io.github.Codeturion/codesurface",
34
"version": "0.4.0",
4-
"description": "MCP server that indexes your codebase's public API at startup and serves it via compact tool responses. Supports C#, Java, Python, and TypeScript.",
5+
"description": "Indexes your codebase's public API and serves it via compact MCP tool responses.",
56
"repository": {
67
"url": "https://github.com/Codeturion/codesurface",
78
"source": "github"
89
},
910
"packages": [
1011
{
11-
"registry_name": "pypi",
12-
"name": "codesurface",
13-
"version": "0.4.0"
12+
"registryType": "pypi",
13+
"registryBaseUrl": "https://pypi.org",
14+
"identifier": "codesurface",
15+
"version": "0.4.0",
16+
"runtimeHint": "uvx",
17+
"transport": {
18+
"type": "stdio"
19+
}
1420
}
1521
],
16-
"remotes": [],
1722
"tools": [
1823
{
1924
"name": "search",

0 commit comments

Comments
 (0)