Skip to content

Commit ab957b4

Browse files
saqadriandrew-lastmile
authored andcommitted
replace mcpc with mcp-c
1 parent 57fbae5 commit ab957b4

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
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 mcpc in a couple of commands"
3+
description: "Deploy an MCP application to mcp-c in a couple of commands"
44
icon: rocket
55
---
66

77
<Info>
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).
8+
**mcp-c** 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 mcpc stitches MCP apps, Temporal, and container orchestration together"
4+
description: "How mcp-c stitches MCP apps, Temporal, and container orchestration together"
55
icon: sitemap
66
---
77

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.
8+
This page expands on the managed architecture that powers `mcp-c`, 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: mcpc
2+
title: mcp-c
33
description: "[Beta] Deploy, orchestrate, and observe MCP applications on managed infrastructure"
44
---
55

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.
6+
`mcp-c` 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: 3 additions & 3 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 mcpc platform"
10+
alt="Overview of the mcp-c platform"
1111
width="940"
1212
height="470"
1313
/>
@@ -22,7 +22,7 @@ icon: rocket
2222

2323
## Deployment paths
2424

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)
25+
- **Managed (mcp-c)**`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,7 +66,7 @@ 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="mcpc" icon="cloud" href="/cloud/mcp-agent-cloud/overview">
69+
<Card title="mcp-c" icon="cloud" href="/cloud/mcp-agent-cloud/overview">
7070
Deep dive into the Cloud's architecture & lifecycle
7171
</Card>
7272
<Card title="Authentication" icon="shield-check" href="/cloud/authentication/overview">

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 our cloud, [mcpc](/cloud/deployment-quickstart)! Free while in Beta.",
23+
"content": "Deploy agents, MCP servers and ChatGPT apps to our cloud, [mcp-c](/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": "mcpc",
97+
"group": "mcp-c",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ icon: cloud
66
---
77

88
<Info>
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).
9+
`mcp-c` 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 mcpc?
12+
## What is mcp-c?
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 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.
96+
When deployed (locally or hosted on mcp-c), 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)