diff --git a/docs/publishing/guides/existing-mcp-server.mdx b/docs/publishing/guides/existing-mcp-server.mdx index f7c25c33..4571982f 100644 --- a/docs/publishing/guides/existing-mcp-server.mdx +++ b/docs/publishing/guides/existing-mcp-server.mdx @@ -60,6 +60,8 @@ agentic signup -e -p -u URL and that the URL supports the Streamable HTTP transport. +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. + @@ -136,8 +138,8 @@ Every time you make a change to your project, you can run `agentic deploy` which - The returned deployment will not have any information about the origin server, - because your origin server is considered hidden once deployed to Agentic's MCP + The returned deployment will not have any information about your origin + server, because the origin is considered hidden once deployed to Agentic's MCP gateway. @@ -323,7 +325,7 @@ curl -X POST -H "Content-Type: application/json" -d '{ "query": "example google ```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' ``` diff --git a/docs/publishing/guides/existing-openapi-service.mdx b/docs/publishing/guides/existing-openapi-service.mdx index 55453b3c..3e8cc27a 100644 --- a/docs/publishing/guides/existing-openapi-service.mdx +++ b/docs/publishing/guides/existing-openapi-service.mdx @@ -60,6 +60,8 @@ agentic signup -e -p -u `https` URL, and that your OpenAPI spec is a valid 3.0 or 3.1 spec. +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. + @@ -140,8 +142,8 @@ Every time you make a change to your project, you can run `agentic deploy` which - The returned deployment will not have any information about the origin server, - because your origin server is considered hidden once deployed to Agentic's MCP + The returned deployment will not have any information about your origin + server, because the origin is considered hidden once deployed to Agentic's MCP gateway. @@ -325,7 +327,7 @@ curl -X POST -H "Content-Type: application/json" -d '{ "query": "example google ```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' ```