From 894fa6b8e21a045ea7afe2c203589104f6398bdb Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Fri, 27 Jun 2025 14:59:34 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/publishing/guides/py-fastmcp.mdx | 2 +- docs/publishing/guides/ts-fastmcp.mdx | 2 +- docs/publishing/guides/ts-mcp-hono.mdx | 4 ++-- docs/publishing/guides/ts-openapi-hono.mdx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/publishing/guides/py-fastmcp.mdx b/docs/publishing/guides/py-fastmcp.mdx index 0efb513c..7c64a36c 100644 --- a/docs/publishing/guides/py-fastmcp.mdx +++ b/docs/publishing/guides/py-fastmcp.mdx @@ -40,7 +40,7 @@ if __name__ == "__main__": Streamable HTTP transport. -## 3. Deploy your server +## 3. Deploy your MCP server remotely Deploy your server publicly or use a tool like [ngrok](https://ngrok.com) to expose it to the internet. diff --git a/docs/publishing/guides/ts-fastmcp.mdx b/docs/publishing/guides/ts-fastmcp.mdx index 6f849af3..e5eea6de 100644 --- a/docs/publishing/guides/ts-fastmcp.mdx +++ b/docs/publishing/guides/ts-fastmcp.mdx @@ -63,7 +63,7 @@ server.start({ use the Streamable HTTP transport. -## 3. Deploy your server +## 3. Deploy your MCP server remotely Deploy your server publicly or use a tool like [ngrok](https://ngrok.com) to expose it to the internet. diff --git a/docs/publishing/guides/ts-mcp-hono.mdx b/docs/publishing/guides/ts-mcp-hono.mdx index c87dbd93..c7ce301b 100644 --- a/docs/publishing/guides/ts-mcp-hono.mdx +++ b/docs/publishing/guides/ts-mcp-hono.mdx @@ -3,7 +3,7 @@ title: TS MCP Hono description: This guide shows how to publish an MCP server to Agentic using TypeScript and Hono's MCP support. --- -[Hono](https://hono.dev) is a popular open source TypeScript framework for building HTTP servers, and [`@hono/mcp`](https://github.com/honojs/middleware/tree/main/packages/mcp) is a Hono middleware for serving MCP servers. +[Hono](https://hono.dev) is a popular open source TypeScript framework for building HTTP servers, and [`@hono/mcp`](https://github.com/honojs/middleware/tree/main/packages/mcp) is an excellent middleware for exposing MCP servers. ## 1. Install dependencies @@ -81,7 +81,7 @@ serve({ fetch: app.fetch, port: 8787 }) docs](https://hono.dev/docs/getting-started/basic). -## 3. Deploy your server +## 3. Deploy your MCP server remotely Deploy your server publicly or use a tool like [ngrok](https://ngrok.com) to expose it to the internet. diff --git a/docs/publishing/guides/ts-openapi-hono.mdx b/docs/publishing/guides/ts-openapi-hono.mdx index 756a5993..5e260482 100644 --- a/docs/publishing/guides/ts-openapi-hono.mdx +++ b/docs/publishing/guides/ts-openapi-hono.mdx @@ -88,7 +88,7 @@ Note that the auto-generated OpenAPI spec will be available at `/docs` in this e docs](https://hono.dev/docs/getting-started/basic). -## 3. Deploy your server +## 3. Deploy your OpenAPI server remotely Deploy your server publicly or use a tool like [ngrok](https://ngrok.com) to expose it to the internet.