feat: remove test tool.

This commit is contained in:
Daniel Bauer
2025-06-30 12:11:58 +02:00
parent 2fdf4184de
commit 67f56a51ff
2 changed files with 1 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
"""Cordra client wrapper using HTTP requests."""
import logging
from typing import Any, cast
from typing import Any
import requests
from pydantic import BaseModel, Field

View File

@@ -106,11 +106,6 @@ async def register_schema_resources() -> None:
logger.warning(f"Failed to register schema resources: {e}")
@mcp.tool()
async def ping() -> str:
"""Simple ping tool to test server connectivity."""
return "pong"
async def initialize_server() -> None:
"""Initialize server resources before starting."""