Manufact - Deploy MCP Apps and Servers to the Cloud in Under 60 Seconds
Manufact Cloud lets you build, deploy, and distribute MCP servers and AI apps for ChatGPT, Claude, and Gemini from a single codebase. Built on the open-source mcp-use SDK with 10k+ GitHub stars.
TL;DR
TL;DR: Manufact Cloud lets you deploy MCP apps and servers to production in under 60 seconds, targeting ChatGPT, Claude, and Gemini from a single TypeScript/Python codebase — backed by the open-source mcp-use SDK with 10k+ GitHub stars.
Source and Accuracy Notes
⚠️ This section is MANDATORY. All links must be verified from actual source, not guessed.
- Project page: manufact.com
- Source repository: github.com/mcp-use/mcp-use
- License: MIT (verified via GitHub API
license.spdx_id) - HN launch thread: news.ycombinator.com/item?id=48762862
- Source last checked: 2026-07-07 (commit
main, 10.3k stars)
What Is Manufact?
Manufact is a YC S25 company that provides both an open-source SDK and a managed cloud platform for building, deploying, and distributing MCP (Model Context Protocol) servers and AI applications.
The core product is mcp-use, a fullstack MCP framework that lets you write once and deploy to multiple AI platforms:
- ChatGPT — via the ChatGPT Apps Store
- Claude — via Claude Connectors / Anthropic’s cloud
- Gemini — via Google’s AI ecosystem
From a single TypeScript or Python codebase, you get production hosting, cross-client testing, publishing checks, analytics, and an embedded chat widget — all in one workflow.
The Manufact Cloud platform adds managed infrastructure on top: sub-60-second deploys from git push, a cloud inspector for tracing and debugging MCP traffic, and a one-click path from scaffolded code to a live app.
Key Features
Build Once, Deploy Everywhere
The mcp-use SDK abstracts away the differences between AI platform APIs. Instead of writing separate integrations for ChatGPT, Claude, and Gemini, you write against the MCP specification and the SDK handles the rest.
// One codebase — targets ChatGPT, Claude, and Gemini
import { MCPApp } from 'mcp-use';
const app = new MCPApp({ name: 'my-chart-app' });
app.addServer('chart-builder', {
transport: 'http',
url: 'https://api.example.com/mcp'
});
export { app };
Vibecode Your MCP App
The Manufact platform includes a vibe mode where you describe what you want and it scaffolds the MCP server and UI widgets in front of you. You can start from a natural-language description rather than a blank file.
Templates and Scaffolding
If you prefer a known-good starting point, Manufact offers deploy-ready templates for common use cases:
- Chart Builder — renders charts from natural-language queries
- Diagram Builder — generates flowcharts and architecture diagrams
- More templates covering common enterprise workflows
Each template includes widget scaffolding, MCP server setup, and a deployment pipeline pre-wired to Manufact Cloud.
Cross-Client Testing
A key pain point with MCP apps is verifying behavior across different AI platforms. Manufact’s cross-client testing runs the same test scenarios against ChatGPT, Claude, and Gemini simultaneously, surfacing platform-specific failures before you ship.
Publishing Checks
Before submitting to the ChatGPT Apps Store or Claude Connectors marketplace, Manufact audits your app against each store’s requirements — catching missing fields, permission scope issues, and policy violations early.
Cloud Inspector
Production MCP traffic can be traced, replayed, and debugged using Manufact’s cloud inspector. This is particularly useful when a tool works in development but behaves differently under load in production.
Setup Workflow
1. Connect Your GitHub Repository
Sign up at manufact.com and connect your GitHub account. Select the repository containing your MCP server or app.
2. Configure the mcp-use SDK
If you are starting from scratch, the Manufact CLI scaffolds the project:
npx create-mcp-app my-app --template chart-builder
cd my-app
npm install
The scaffold includes package.json, a TypeScript MCP server, widget components, and a manufact.json deployment config.
3. Deploy with Git Push
Manufact Cloud deploys via the GitHub App. After connecting your repo, every push triggers a build and deploy pipeline:
git push origin main
# Manufact Cloud detects the push, builds your MCP app,
# runs publishing checks, and deploys to production in under 60 seconds.
The deploy status appears in the Manufact dashboard, and your app is accessible via its Manufact Cloud URL.
4. Test Across Clients
From the Manufact dashboard, open Cross-Client Testing and select the scenarios you want to verify. Results show pass/fail per platform with platform-specific error details.
5. Monitor with Cloud Inspector
In production, the Cloud Inspector tab shows live MCP request traces. You can replay any request to debug behavior without reproducing the exact conditions in your local environment.
How It Compares
| Feature | Manufact Cloud | Standalone MCP Server | |---|---|---| | Multi-platform deploy | ChatGPT + Claude + Gemini | Single platform | | Managed infrastructure | Yes | Self-hosted required | | Cross-client testing | Built-in | Manual | | Publishing checks | Automated pre-submission | Not included | | Embedded chat widget | Yes | Not included | | Open-source SDK | mcp-use (MIT) | Varies |
The primary alternative is deploying MCP servers manually on your own infrastructure (VPS, Cloudflare Workers, etc.). That approach gives you full control but requires you to handle load balancing, TLS, monitoring, and platform-specific publishing workflows yourself.
Security Notes
- MCP servers handle tool execution on behalf of an AI model — treat them as security boundary components
- The mcp-use SDK does not automatically sanitize tool inputs; validate and sanitize all parameters within your server handlers
- Manufact Cloud runs your servers in isolated compute environments, but you are responsible for the security of your server code
- Review ChatGPT Apps Store and Claude Connectors permission scopes before submitting — over-broad permissions are a common rejection reason
FAQ
Q: Do I need to use Manufact Cloud to use mcp-use? A: No. The mcp-use SDK is open-source (MIT) and can be used standalone to build MCP servers and clients. Manufact Cloud adds managed hosting, cross-client testing, and distribution tooling on top.
Q: Which programming languages are supported? A: TypeScript and Python are both supported by the mcp-use SDK.
Q: Is there a free tier? A: Check manufact.com/pricing for the latest tier details. The open-source SDK is always free.
Q: Can I self-host the MCP servers built with mcp-use? A: Yes. mcp-use generates standard MCP server code that you can host anywhere that supports Node.js or Python (Cloudflare Workers, Railway, Docker, etc.). Manufact Cloud is an optional hosted option.
Q: How does cross-client testing work? A: You define test scenarios in the Manufact dashboard. The platform runs the same scenario against your app deployed to ChatGPT, Claude, and Gemini, then reports pass/fail per platform. This catches platform-specific quirks before you submit to an app store.
Conclusion
Manufact fills the gap between “I built an MCP server” and “my MCP server is live and working across every major AI platform.” The combination of the open-source mcp-use SDK (10k+ stars, MIT) and Manufact Cloud’s managed infrastructure gives you a path from local development to production distribution without reinventing deployment pipelines, testing workflows, or publishing checklists for each AI platform individually.
If you are building anything on top of the Model Context Protocol, this is worth evaluating as your development and distribution platform.
Links:
- manufact.com — product and cloud platform
- github.com/mcp-use/mcp-use — open-source SDK
Related Posts
dev-tools
Automotive Skills Suite for AI Engineering
Evaluate Automotive Skills Suite for APQP, ASPICE, HARA, safety-plan, and DIA workflows with setup notes, governance risks, and SME review guidance.
5/28/2026
dev-tools
awesome-agentic-ai-zh Roadmap Guide
Explore awesome-agentic-ai-zh as a Chinese agentic AI learning roadmap, with setup notes, track selection, study workflow, and evaluation guidance.
5/28/2026
dev-tools
Baguette iOS Simulator Automation Guide
Set up Baguette for iOS Simulator automation, web dashboards, device farms, gesture input, streaming, and camera testing with Xcode caveats.
5/28/2026