kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/715/head
rodzic
0d11349eab
commit
ba14855396
|
@ -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.
|
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
|
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
|
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.
|
I'd be happy to help walk you through setting your product up for success.
|
||||||
</Note>
|
</Tip>
|
||||||
|
|
||||||
## Config Fields
|
## Config Fields
|
||||||
|
|
||||||
|
@ -162,8 +162,8 @@ See [Tool Config](/publishing/config/tool-config) for details.
|
||||||
|
|
||||||
## Config Help
|
## Config Help
|
||||||
|
|
||||||
<Note>
|
<Tip>
|
||||||
Configuring your project can feel a little overwhelming. Feel free to [reach
|
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
|
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.
|
I'd be happy to help walk you through setting your product up for success.
|
||||||
</Note>
|
</Tip>
|
||||||
|
|
|
@ -144,9 +144,9 @@ See [Rate Limits](/publishing/config/rate-limits) for details.
|
||||||
|
|
||||||
## Config Help
|
## Config Help
|
||||||
|
|
||||||
<Note>
|
<Tip>
|
||||||
Configuring your project can feel a little overwhelming with the amount of
|
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
|
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
|
considering using Agentic's MCP Gateway, and I'd be happy to help walk you
|
||||||
through setting your product up for success.
|
through setting your product up for success.
|
||||||
</Note>
|
</Tip>
|
||||||
|
|
|
@ -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.
|
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
|
## 7. (Optional) Submit your product to the public Agentic Marketplace
|
||||||
|
|
||||||
|
|
|
@ -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.
|
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
|
## 7. (Optional) Submit your product to the public Agentic Marketplace
|
||||||
|
|
||||||
|
|
|
@ -80,11 +80,11 @@ app.all('/mcp', async (c) => {
|
||||||
serve({ fetch: app.fetch, port: 8787 })
|
serve({ fetch: app.fetch, port: 8787 })
|
||||||
```
|
```
|
||||||
|
|
||||||
<Note>
|
<Tip>
|
||||||
Hono is really flexible, so if you'd rather deploy your server to Cloudflare
|
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
|
Workers instead of using Node.js (or any other platform), just follow [Hono's
|
||||||
docs](https://hono.dev/docs/getting-started/basic).
|
docs](https://hono.dev/docs/getting-started/basic).
|
||||||
</Note>
|
</Tip>
|
||||||
|
|
||||||
## 3. Deploy your MCP server remotely
|
## 3. Deploy your MCP server remotely
|
||||||
|
|
||||||
|
|
|
@ -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 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
|
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
|
Workers instead of using Node.js (or any other platform), just follow [Hono's
|
||||||
docs](https://hono.dev/docs/getting-started/basic).
|
docs](https://hono.dev/docs/getting-started/basic).
|
||||||
</Note>
|
</Tip>
|
||||||
|
|
||||||
## 3. Deploy your OpenAPI server remotely
|
## 3. Deploy your OpenAPI server remotely
|
||||||
|
|
||||||
|
|
|
@ -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
|
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.
|
[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
|
Remote origin servers are important because they allow for maximum flexibility
|
||||||
with how you author and host your MCP server or OpenAPI service.
|
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.
|
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
|
### Remote Origin MCP Server
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue