From a9441f6761f0bec3065e0572c334881875574de2 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sat, 17 Jan 2026 02:00:13 -0700 Subject: [PATCH] Update hosted MCP server URL to mcwaddams.l.supported.systems Fix URLs in hosted-mcp.mdx to point to the correct deployed hostname. --- src/content/docs/how-to/hosted-mcp.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()