How do I begin using the SaSame MCP Factory?
A first path through the Factory lifecycle.
- Collection
- documentation
- Updated
- 2026-08-03
- min read
- 5
Identify your MCP state, select the matching Factory entry point, then collect a reproducible baseline before changing anything.
1. Connect the public MCP
No account, no API key. Add this to any MCP-Streamable-HTTP-compatible client (Claude Desktop, Claude Code, and similar):
{
"mcpServers": {
"sasame": {
"type": "http",
"url": "https://live-vps.sasame.online/public-mcp"
}
}
}Transport is MCP Streamable HTTP, protocol is JSON-RPC 2.0, and the public surface requires no authentication. Paid, account-scoped actions later use a shared Factory principal/account boundary, not a per-request API key.
2. Call your first tool
The first tool to call is start_here — it returns the machine map and shortest paths for what you're trying to do. The /public-mcp endpoint above lists its full callable tool set by default; tools/list is authoritative for the exact current names and count, which change as the Factory grows — do not rely on a specific number staying fixed (the live count is also shown on the homepage, remeasured every 3 hours). Dedicated surfaces for Town (/mcp/town), Factory (/mcp/factory) and Research (/mcp/research) advertise their own curated tool set, selected by an x-sasame-surface header on those separate paths, not a query parameter on /public-mcp.
A useful second call: audit_mcp with { "url": "https://your-public-mcp.example/mcp" } — this runs a free, point-in-time readiness audit against any public MCP endpoint. It does not create a charge, a claim, or a subscription.
3. Choose your entry point
Every creator enters the same 21-station lifecycle from one of 7 states:
| Entry point | Starting point |
|---|---|
| "I have an idea" | Guided Build from a blank blueprint |
| "I have a design/spec" | Guided Build validating a supplied blueprint |
| "I have an unfinished build" | Guided Build resuming an existing repo |
| "I have a finished MCP" | Straight to inspection/shipment |
| "I have a live MCP" | Straight to observation |
| "My MCP has a problem" | Repair |
| "I just want monitoring" | Monitoring only |
4. Preserve ownership
The creator retains product, repository, code, credentials, data rights and repair responsibility throughout. SaSame does not take custody of creator credentials, and its normal customer flow performs no LLM calls and never modifies creator code — see Guided Build for exactly how that works step by step.
5. Establish evidence
Record identity, observation time, method, limitations and reproducible findings. Every downstream claim about your MCP — a compatibility result, a monitoring record, a repair recommendation — carries this same discipline; see Evidence.
Examples
2- 01
For a live endpoint, begin with runtime observation before proposing a repair.
- 02
curl https://live-vps.sasame.online/public-mcprequires no key; a private, owner-only surface at a different host returns 401 by design.