Update hosted MCP server URL to mcwaddams.l.supported.systems

Fix URLs in hosted-mcp.mdx to point to the correct deployed hostname.
This commit is contained in:
Ryan Malloy 2026-01-17 02:00:13 -07:00
parent f8b67b018e
commit a9441f6761

View File

@ -14,7 +14,7 @@ Don't want to install anything? Connect to our hosted mcwaddams server via HTTP.
<Tabs> <Tabs>
<TabItem label="Claude Code"> <TabItem label="Claude Code">
```bash ```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"
``` ```
</TabItem> </TabItem>
<TabItem label="MCP Settings JSON"> <TabItem label="MCP Settings JSON">
@ -24,7 +24,7 @@ Don't want to install anything? Connect to our hosted mcwaddams server via HTTP.
"mcwaddams": { "mcwaddams": {
"transport": { "transport": {
"type": "streamable-http", "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 import ClientSession
from mcp.client.streamable_http import streamable_http_client 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: async with ClientSession(read, write) as session:
await session.initialize() await session.initialize()
tools = await session.list_tools() tools = await session.list_tools()