diff --git a/docs/publishing/config/index.mdx b/docs/publishing/config/index.mdx index eebb4f1a..48ba6b26 100644 --- a/docs/publishing/config/index.mdx +++ b/docs/publishing/config/index.mdx @@ -5,11 +5,11 @@ description: Configuring your Agentic project. Every Agentic project needs a config file (`agentic.config.ts`, `agentic.config.js`, or `agentic.config.json`) to define the project's metadata, pricing, rate-limits, and any tool-specific behavior overrides. - + Configuring your project can feel a little overwhelming. Feel free to [reach out to us](/contact) if you're considering using Agentic's MCP Gateway, and I'd be happy to help walk you through setting your product up for success. - + ## Config Fields @@ -162,8 +162,8 @@ See [Tool Config](/publishing/config/tool-config) for details. ## Config Help - + Configuring your project can feel a little overwhelming. Feel free to [reach out to us](/contact) if you're considering using Agentic's MCP Gateway, and I'd be happy to help walk you through setting your product up for success. - + diff --git a/docs/publishing/config/tool-config.mdx b/docs/publishing/config/tool-config.mdx index b7088f76..aa915f2d 100644 --- a/docs/publishing/config/tool-config.mdx +++ b/docs/publishing/config/tool-config.mdx @@ -144,9 +144,9 @@ See [Rate Limits](/publishing/config/rate-limits) for details. ## Config Help - + Configuring your project can feel a little overwhelming with the amount of options available. Feel free to [reach out to us](/contact) if you're considering using Agentic's MCP Gateway, and I'd be happy to help walk you through setting your product up for success. - + diff --git a/docs/publishing/guides/existing-mcp-server.mdx b/docs/publishing/guides/existing-mcp-server.mdx index 4571982f..a747cfab 100644 --- a/docs/publishing/guides/existing-mcp-server.mdx +++ b/docs/publishing/guides/existing-mcp-server.mdx @@ -348,7 +348,7 @@ Now, your project will be available at `https://agentic.so/marketplace/projects/ You can share your product's public URL with customers, and they'll be able to subscribe to your product via Stripe. You can visit your [dashboard](https://agentic.so/app) to track customer usage and revenue. -Congrats, you now have a live MCP product! 🎉 +Congrats, you now have a live MCP product! 🎉 ## 7. (Optional) Submit your product to the public Agentic Marketplace diff --git a/docs/publishing/guides/existing-openapi-service.mdx b/docs/publishing/guides/existing-openapi-service.mdx index 3e8cc27a..e938fcd0 100644 --- a/docs/publishing/guides/existing-openapi-service.mdx +++ b/docs/publishing/guides/existing-openapi-service.mdx @@ -350,7 +350,7 @@ Now, your project will be available at `https://agentic.so/marketplace/projects/ You can share your product's public URL with customers, and they'll be able to subscribe to your product via Stripe. You can visit your [dashboard](https://agentic.so/app) to track customer usage and revenue. -Congrats, you now have a live MCP product! 🎉 +Congrats, you now have a live MCP product! 🎉 ## 7. (Optional) Submit your product to the public Agentic Marketplace diff --git a/docs/publishing/guides/ts-mcp-hono.mdx b/docs/publishing/guides/ts-mcp-hono.mdx index 84ef49a8..475310f0 100644 --- a/docs/publishing/guides/ts-mcp-hono.mdx +++ b/docs/publishing/guides/ts-mcp-hono.mdx @@ -80,11 +80,11 @@ app.all('/mcp', async (c) => { serve({ fetch: app.fetch, port: 8787 }) ``` - + Hono is really flexible, so if you'd rather deploy your server to Cloudflare Workers instead of using Node.js (or any other platform), just follow [Hono's docs](https://hono.dev/docs/getting-started/basic). - + ## 3. Deploy your MCP server remotely diff --git a/docs/publishing/guides/ts-openapi-hono.mdx b/docs/publishing/guides/ts-openapi-hono.mdx index cc655d91..9fdfb287 100644 --- a/docs/publishing/guides/ts-openapi-hono.mdx +++ b/docs/publishing/guides/ts-openapi-hono.mdx @@ -87,11 +87,11 @@ serve({ fetch: app.fetch, port: 8787 }) Note that the auto-generated OpenAPI spec will be available at `/docs` in this example. - + Hono is really flexible, so if you'd rather deploy your server to Cloudflare Workers instead of using Node.js (or any other platform), just follow [Hono's docs](https://hono.dev/docs/getting-started/basic). - + ## 3. Deploy your OpenAPI server remotely diff --git a/docs/publishing/origin/index.mdx b/docs/publishing/origin/index.mdx index 393bd7db..36b3f694 100644 --- a/docs/publishing/origin/index.mdx +++ b/docs/publishing/origin/index.mdx @@ -9,13 +9,13 @@ description: Configuring your origin MCP server or OpenAPI service with Agentic' interested in hosting your origin server with Agentic's infrastructure, please [reach out to us](/contact) and we'll be happy to help you get set up. - + Remote origin servers are important because they allow for maximum flexibility with how you author and host your MCP server or OpenAPI service. By cleanly separating between Agentic's MCP gateway and your remote origin server, Agentic supports origin servers written in any language or framework and deployed to any cloud. - + ### Remote Origin MCP Server