diff --git a/src/content/docs/how-to/hosted-mcp.mdx b/src/content/docs/how-to/hosted-mcp.mdx index 1de9171..8a0b4fb 100644 --- a/src/content/docs/how-to/hosted-mcp.mdx +++ b/src/content/docs/how-to/hosted-mcp.mdx @@ -14,7 +14,7 @@ Don't want to install anything? Connect to our hosted mcwaddams server via HTTP. ```bash - claude mcp add mcwaddams-hosted --transport http "https://mcwaddams.supported.systems/mcp" + claude mcp add mcwaddams-hosted --transport http "https://mcwaddams.l.supported.systems/mcp" ``` @@ -24,7 +24,7 @@ Don't want to install anything? Connect to our hosted mcwaddams server via HTTP. "mcwaddams": { "transport": { "type": "streamable-http", - "url": "https://mcwaddams.supported.systems/mcp" + "url": "https://mcwaddams.l.supported.systems/mcp" } } } @@ -36,7 +36,7 @@ Don't want to install anything? Connect to our hosted mcwaddams server via HTTP. from mcp import ClientSession from mcp.client.streamable_http import streamable_http_client - async with streamable_http_client("https://mcwaddams.supported.systems/mcp") as (read, write): + async with streamable_http_client("https://mcwaddams.l.supported.systems/mcp") as (read, write): async with ClientSession(read, write) as session: await session.initialize() tools = await session.list_tools()