diff --git a/src/phoenix_technologies/smd/server.py b/src/phoenix_technologies/smd/server.py index 22a0faa..f1db6c4 100644 --- a/src/phoenix_technologies/smd/server.py +++ b/src/phoenix_technologies/smd/server.py @@ -27,7 +27,7 @@ mcp = FastMCP("SMD Researcher", host="0.0.0.0", port=8000, timeout_keep_alive=72 @mcp.tool() async def smd_detail_article(article_id: str) -> dict: """ - Get the Details of an article found by the tool smd_research. + Get the Details of an article found by the tool smd_research based on the article_id. Use this tool after smd_research is executed to get all the details of the articles in the result. Args: @@ -36,7 +36,7 @@ async def smd_detail_article(article_id: str) -> dict: Returns: String containing the details of the article """ - url = f"https://api.smd.ch/api/documents/{article_id}" + url = f"https://api.swissdox.ch/api/documents/{article_id}" headers = { "authorization": f"Bearer {os.getenv('SWISSDOX_BEARER_TOKEN', '')}", "content-type": "application/json",