[PATCH 18/23] mcp-server: Rename server from rteval to rteval-mcp
John Kacur <[email protected]>
| Newsgroups | org.kernel.vger.linux-rt-users |
|---|---|
| Message-ID | <[email protected]> |
Rename the MCP server name from "rteval" to "rteval-mcp" to avoid naming conflicts and follow MCP server naming conventions. This updates: - Server name in .mcp.json configuration - Plugin metadata in manifest.json and plugin.json - Tool prefix documentation in README (from mcp__plugin_rteval-mcp_rteval__ to mcp__rteval-mcp__) Assisted-by: Claude:claude-sonnet-4-5 Signed-off-by: John Kacur <[email protected]> --- .mcp.json | 7 +++---- mcp-server/.claude-plugin/plugin.json | 2 +- mcp-server/README.md | 2 +- mcp-server/manifest.json | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.mcp.json b/.mcp.json index a4d5fc706f88..5e1a5d789c9b 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,11 +1,10 @@ { "mcpServers": { - "rteval": { + "rteval-mcp": { "command": "python3", "args": [ "/home/jkacur/src/rteval/mcp-server/server.py" - ], - "env": {} + ] } } -} +} \ No newline at end of file diff --git a/mcp-server/.claude-plugin/plugin.json b/mcp-server/.claude-plugin/plugin.json index b81b49851703..c3469c048524 100644 --- a/mcp-server/.claude-plugin/plugin.json +++ b/mcp-server/.claude-plugin/plugin.json @@ -9,7 +9,7 @@ "license": "GPL-2.0", "keywords": ["rteval", "real-time", "latency", "testing", "timerlat", "cyclictest"], "mcpServers": { - "rteval": { + "rteval-mcp": { "command": "python3", "args": [ "/home/jkacur/src/rteval/mcp-server/server.py" diff --git a/mcp-server/README.md b/mcp-server/README.md index ce4cfdda4781..81252964f1eb 100644 --- a/mcp-server/README.md +++ b/mcp-server/README.md @@ -71,7 +71,7 @@ The server is configured as a Claude Code plugin. After installation: 1. The server is registered in `~/.claude/plugins/installed_plugins.json` 2. Enabled in `~/.claude/settings.json` 3. Restart Claude Code to load the plugin -4. Tools will be available with the prefix: `mcp__plugin_rteval-mcp_rteval__` +4. Tools will be available with the prefix: `mcp__rteval-mcp__` Example queries: ``` diff --git a/mcp-server/manifest.json b/mcp-server/manifest.json index e187ef0a9149..6127dcd26774 100644 --- a/mcp-server/manifest.json +++ b/mcp-server/manifest.json @@ -1,6 +1,6 @@ { "manifest_version": "0.2", - "name": "rteval", + "name": "rteval-mcp", "version": "0.1.0", "description": "rteval test results analysis - query and compare real-time evaluation test results", "author": { -- 2.55.0