Skip to content

Commit 0a4f8f9

Browse files
tanbroclaude
andcommitted
fix(server.json): use standard runtimeHint and packageArguments format
Update server.json to follow the official MCP Registry specification: - Use `runtimeHint: "uvx"` instead of embedding command in transport - Use `packageArguments` for the stdio positional argument - Add explicit `registryBaseUrl` for PyPI This format is more compatible with MCP clients and the registry. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0048450 commit 0a4f8f9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

server.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@
99
"packages": [
1010
{
1111
"registryType": "pypi",
12+
"registryBaseUrl": "https://pypi.org",
1213
"identifier": "uiautomator2-mcp-server",
1314
"version": "0.3.0",
15+
"runtimeHint": "uvx",
1416
"transport": {
15-
"type": "stdio",
16-
"command": "uvx",
17-
"args": ["uiautomator2-mcp-server", "stdio"],
18-
"env": {}
17+
"type": "stdio"
1918
},
20-
"runtime": "python"
19+
"packageArguments": [
20+
{
21+
"type": "positional",
22+
"value": "stdio"
23+
}
24+
]
2125
}
2226
]
2327
}

0 commit comments

Comments
 (0)