From 77ef823eb1bdb7ee8db20a3c4af4c1fa6056ae3c Mon Sep 17 00:00:00 2001 From: Davide Eynard Date: Mon, 11 Aug 2025 11:29:53 +0100 Subject: [PATCH] Fixed endpoint param name in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index faee727..a2e6778 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ make test ```python from mcpd import McpdClient, McpdError -client = McpdClient(endpoint="http://localhost:8090") +client = McpdClient(api_endpoint="http://localhost:8090") # List available servers print(client.servers()) @@ -82,7 +82,7 @@ from any_agent import AnyAgent, AgentConfig from mcpd import McpdClient # Assumes the mcpd daemon is running -client = McpdClient(endpoint="http://localhost:8090") +client = McpdClient(api_endpoint="http://localhost:8090") agent_config = AgentConfig( tools=client.agent_tools(),