pull/715/head
Travis Fischer 2025-06-29 08:59:12 -05:00
rodzic 0d11349eab
commit ba14855396
7 zmienionych plików z 14 dodań i 14 usunięć

Wyświetl plik

@ -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.
<Note>
<Tip>
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.
</Note>
</Tip>
## Config Fields
@ -162,8 +162,8 @@ See [Tool Config](/publishing/config/tool-config) for details.
## Config Help
<Note>
<Tip>
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.
</Note>
</Tip>

Wyświetl plik

@ -144,9 +144,9 @@ See [Rate Limits](/publishing/config/rate-limits) for details.
## Config Help
<Note>
<Tip>
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.
</Note>
</Tip>

Wyświetl plik

@ -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.
<Note>Congrats, you now have a live MCP product! 🎉</Note>
<Tip>Congrats, you now have a live MCP product! 🎉</Tip>
## 7. (Optional) Submit your product to the public Agentic Marketplace

Wyświetl plik

@ -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.
<Note>Congrats, you now have a live MCP product! 🎉</Note>
<Tip>Congrats, you now have a live MCP product! 🎉</Tip>
## 7. (Optional) Submit your product to the public Agentic Marketplace

Wyświetl plik

@ -80,11 +80,11 @@ app.all('/mcp', async (c) => {
serve({ fetch: app.fetch, port: 8787 })
```
<Note>
<Tip>
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).
</Note>
</Tip>
## 3. Deploy your MCP server remotely

Wyświetl plik

@ -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.
<Note>
<Tip>
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).
</Note>
</Tip>
## 3. Deploy your OpenAPI server remotely

Wyświetl plik

@ -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.
<Note>
<Tip>
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.
</Note>
</Tip>
### Remote Origin MCP Server