Rename example servers (#675)

We disallow spaces in the name
This commit is contained in:
Eric Gustin 2025-11-12 10:21:25 -08:00 committed by GitHub
parent 90c685c24a
commit 99ffc03348
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ from typing import Annotated
from arcade_mcp_server import MCPApp
app = MCPApp("Echo server")
app = MCPApp("EchoServer")
@app.tool

View file

@ -3,7 +3,7 @@ from typing import Annotated
from arcade_mcp_server import Context, MCPApp
from loguru import logger
app = MCPApp("Logging server")
app = MCPApp("LoggingServer")
@app.tool

View file

@ -5,7 +5,7 @@ from arcade_mcp_server import MCPApp
import server_with_evaluations
app = MCPApp(name="server-with-evaluations", version="1.0.0", log_level="DEBUG")
app = MCPApp(name="ServerWithEvaluations", version="1.0.0", log_level="DEBUG")
app.add_tools_from_module(server_with_evaluations)