pull/715/head
Travis Fischer 2025-06-29 08:45:05 -05:00
rodzic a4dfeb2c1e
commit 701f6a88cc
2 zmienionych plików z 10 dodań i 6 usunięć

Wyświetl plik

@ -60,6 +60,8 @@ agentic signup -e <email> -p <password> -u <username>
URL and that the URL supports the Streamable HTTP transport. URL and that the URL supports the Streamable HTTP transport.
</Info> </Info>
Your agentic config either be an `agentic.config.ts` file or an `agentic.config.json` file. The advantage of using a `ts` file is that you get full autocomplete and type safety.
<Tabs> <Tabs>
<Tab title="TypeScript"> <Tab title="TypeScript">
@ -136,8 +138,8 @@ Every time you make a change to your project, you can run `agentic deploy` which
</Info> </Info>
<Note> <Note>
The returned deployment will not have any information about the origin server, The returned deployment will not have any information about your origin
because your origin server is considered hidden once deployed to Agentic's MCP server, because the origin is considered hidden once deployed to Agentic's MCP
gateway. gateway.
</Note> </Note>
@ -323,7 +325,7 @@ curl -X POST -H "Content-Type: application/json" -d '{ "query": "example google
<Tab title="HTTPie"> <Tab title="HTTPie">
```bash ```bash
http -j https://gateway.agentic.com/mcp/search/search query='example google search' http https://gateway.agentic.com/mcp/search/search query='example google search'
``` ```
</Tab> </Tab>

Wyświetl plik

@ -60,6 +60,8 @@ agentic signup -e <email> -p <password> -u <username>
`https` URL, and that your OpenAPI spec is a valid 3.0 or 3.1 spec. `https` URL, and that your OpenAPI spec is a valid 3.0 or 3.1 spec.
</Info> </Info>
Your agentic config either be an `agentic.config.ts` file or an `agentic.config.json` file. The advantage of using a `ts` file is that you get full autocomplete and type safety.
<Tabs> <Tabs>
<Tab title="TypeScript"> <Tab title="TypeScript">
@ -140,8 +142,8 @@ Every time you make a change to your project, you can run `agentic deploy` which
<Expandable title="example output"> <Expandable title="example output">
<Note> <Note>
The returned deployment will not have any information about the origin server, The returned deployment will not have any information about your origin
because your origin server is considered hidden once deployed to Agentic's MCP server, because the origin is considered hidden once deployed to Agentic's MCP
gateway. gateway.
</Note> </Note>
@ -325,7 +327,7 @@ curl -X POST -H "Content-Type: application/json" -d '{ "query": "example google
<Tab title="HTTPie"> <Tab title="HTTPie">
```bash ```bash
http -j https://gateway.agentic.com/mcp/search/search query='example google search' http https://gateway.agentic.com/mcp/search/search query='example google search'
``` ```
</Tab> </Tab>