Skip to content

Commit 57fbae5

Browse files
saqadriandrew-lastmile
authored andcommitted
Update docs to mcpc references
1 parent 256f845 commit 57fbae5

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

docs/cloud/deployment-quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Cloud Quickstart
3-
description: "Deploy an MCP application to mcp-agent cloud in a couple of commands"
3+
description: "Deploy an MCP application to mcpc in a couple of commands"
44
icon: rocket
55
---
66

77
<Info>
8-
**mcp-agent cloud** is in open beta. Share feedback via [GitHub](https://github.com/lastmile-ai/mcp-agent/issues) or [Discord](https://lmai.link/discord/mcp-agent).
8+
**mcpc** is in open beta. Share feedback via [GitHub](https://github.com/lastmile-ai/mcp-agent/issues) or [Discord](https://lmai.link/discord/mcp-agent).
99
</Info>
1010

1111
## TL;DR

docs/cloud/mcp-agent-cloud/architecture-overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Architecture Overview
33
sidebarTitle: "Architecture Overview"
4-
description: "How mcp-agent cloud stitches MCP apps, Temporal, and container orchestration together"
4+
description: "How mcpc stitches MCP apps, Temporal, and container orchestration together"
55
icon: sitemap
66
---
77

8-
This page expands on the managed architecture that powers `mcp-agent cloud`. Use it to understand deployment flows, security boundaries, and the runtime environment your code executes inside.
8+
This page expands on the managed architecture that powers `mcpc`, our MCP cloud platform. Use it to understand deployment flows, security boundaries, and the runtime environment your code executes inside.
99

1010
## High-level layout
1111

docs/cloud/mcp-agent-cloud/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: mcp-agent cloud
2+
title: mcpc
33
description: "[Beta] Deploy, orchestrate, and observe MCP applications on managed infrastructure"
44
---
55

6-
`mcp-agent cloud` is a fully managed runtime for MCP applications—whether that is a full `mcp-agent` workflow, a FastMCP server, or a custom ChatGPT App backend. You write agents using the same decorators you use locally—`@app.tool`, `@app.async_tool`, `@app.workflow`—and deploy them with a single CLI command. The platform bundles your code, provisions containerized MCP servers, executes workflows on Temporal, secures secrets, and streams telemetry to your dashboard or OTEL backend.
6+
`mcpc` is a fully managed runtime for MCP applications—whether that is a full `mcp-agent` workflow, a FastMCP server, or a custom ChatGPT App backend. You write agents using the same decorators you use locally—`@app.tool`, `@app.async_tool`, `@app.workflow`—and deploy them with a single CLI command. The platform bundles your code, provisions containerized MCP servers, executes workflows on Temporal, secures secrets, and streams telemetry to your dashboard or OTEL backend.
77

88
## Key capabilities
99

docs/cloud/overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ icon: rocket
77

88
<img
99
src="https://github.com/user-attachments/assets/92118b28-07a9-4b00-8293-c8684c08ff35"
10-
alt="Overview of the mcp-agent cloud platform"
10+
alt="Overview of the mcpc platform"
1111
width="940"
1212
height="470"
1313
/>
@@ -22,7 +22,7 @@ icon: rocket
2222

2323
## Deployment paths
2424

25-
- **Managed (mcp-agent cloud)**`mcp-agent deploy` bundles your project, processes secrets, and ships it to our hosted environment. Agent workflows execute on Temporal, stdio MCP servers run as sidecar containers, and you get managed auth, logging, and tracing. [Learn the architecture →](/cloud/mcp-agent-cloud/architecture-overview)
25+
- **Managed (mcpc)**`mcp-agent deploy` bundles your project, processes secrets, and ships it to our hosted environment. Agent workflows execute on Temporal, stdio MCP servers run as sidecar containers, and you get managed auth, logging, and tracing. [Learn the architecture →](/cloud/mcp-agent-cloud/architecture-overview)
2626
- **Bring-your-own Temporal** – point the same project at your self-hosted Temporal cluster for on-prem or air-gapped requirements. See [Durable agents](/mcp-agent-sdk/advanced/durable-agents) for configuration.
2727
- **Plain MCP servers** – use FastMCP or `@app.tool` only and deploy without workflows when you just need stateless tools. [Deploy an MCP server →](/cloud/mcp-agent-cloud/deploy-mcp-server)
2828
- **Local iteration** – run with `asyncio` on your laptop for rapid development and tests. Switch to Temporal when you are ready for durability.
@@ -66,8 +66,8 @@ Any MCP client can connect over SSE/WebSocket using your chosen auth mode.
6666
<Card title="Deployment Quickstart" icon="rocket" href="/cloud/deployment-quickstart">
6767
Hands-on walk-through from project to production
6868
</Card>
69-
<Card title="mcp-agent Cloud" icon="cloud" href="/cloud/mcp-agent-cloud/overview">
70-
Deep dive into the managed architecture & lifecycle
69+
<Card title="mcpc" icon="cloud" href="/cloud/mcp-agent-cloud/overview">
70+
Deep dive into the Cloud's architecture & lifecycle
7171
</Card>
7272
<Card title="Authentication" icon="shield-check" href="/cloud/authentication/overview">
7373
Compare bearer tokens, OAuth, and unauthenticated modes

docs/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ Keep sensitive configuration in separate secrets files:
735735
</Tab>
736736

737737
<Tab title="Cloud Secrets">
738-
For mcp-agent cloud deployments, only raw secrets (not environment variables) are supported:
738+
For Cloud deployments, only raw secrets (not environment variables) are supported currently:
739739

740740
```yaml
741741
openai:

docs/docs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"favicon": "/favicon.png",
2222
"banner": {
23-
"content": "Deploy agents, MCP servers and ChatGPT apps to [mcp-agent cloud](/cloud/deployment-quickstart)! Free while in Beta.",
23+
"content": "Deploy agents, MCP servers and ChatGPT apps to our cloud, [mcpc](/cloud/deployment-quickstart)! Free while in Beta.",
2424
"link": "/cloud/deployment-quickstart"
2525
},
2626
"navigation": {
@@ -94,7 +94,7 @@
9494
"cloud/overview",
9595
"cloud/deployment-quickstart",
9696
{
97-
"group": "mcp-agent cloud",
97+
"group": "mcpc",
9898
"pages": [
9999
"cloud/mcp-agent-cloud/architecture-overview",
100100
"cloud/mcp-agent-cloud/long-running-tools",

docs/get-started/deploy-to-cloud.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: Deploy to Cloud
33
sidebarTitle: "Deploy to Cloud"
4-
description: "Publish your agent to mcp-agent Cloud with the CLI."
4+
description: "Publish your agent to the Cloud with the CLI."
55
icon: cloud
66
---
77

88
<Info>
9-
`mcp-agent cloud` is in open beta, and free to use. Share feedback via [GitHub issues](https://github.com/lastmile-ai/mcp-agent/issues) or [Discord](https://lmai.link/discord/mcp-agent).
9+
`mcpc` is in open beta, and free to use. Share feedback via [GitHub issues](https://github.com/lastmile-ai/mcp-agent/issues) or [Discord](https://lmai.link/discord/mcp-agent).
1010
</Info>
1111

12-
## What is mcp-agent cloud?
12+
## What is mcpc?
1313

1414
Before diving into the workflow, here is the 30‑second summary. See the dedicated pages under [Deployment](/cloud/overview) for full detail:
1515

docs/mcp-agent-sdk/advanced/authentication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ authorization:
9393
token_cache_ttl_seconds: 300
9494
```
9595

96-
When deployed (locally or on mcp-agent Cloud), clients must present a valid access token with the listed audiences/scopes. This is fully compatible with the Model Context Protocol logging, workflow, and elicitation utilities.
96+
When deployed (locally or hosted on mcpc), clients must present a valid access token with the listed audiences/scopes. This is fully compatible with the Model Context Protocol logging, workflow, and elicitation utilities.
9797

9898
For an overview of secret management (`mcp_agent.secrets.yaml`, environment overrides, preload strategies), see [Configuring your application → Secrets](/mcp-agent-sdk/core-components/configuring-your-application#secrets).
9999

0 commit comments

Comments
 (0)