- Host: The application the user interacts with (Claude Desktop, Cursor, etc.)
- Client: The agent that connects to the MCP Server and supplies authentication or authorization
- Server: The MCP endpoint that exposes tools
Single-tenant
Single-tenant architecture is a model where each customer gets a dedicated application instance and infrastructure, providing full resource isolation.Host-authenticated tool
The MCP Server already holds the credentials for the resource.Example: You ship a Gmail MCP Server that already contains the OAuth token required to read emails. Flow
- The Server stores the Gmail token internally
- The Client connects
- The Client does not send any Gmail credentials
- The Server accesses Gmail directly
- Single-user setups
- No multi-tenant requirements
- Local or private workflows
- Simple “agent runs with my credentials” tooling
This becomes a security liability for any shared or public deployment. Celesto Cloud adds authentication on top of your MCP Server, but we still recommend this pattern only for single-user setups.
Never share the Celesto API key and never expose this Server publicly.
Multi-tenant
Multi-tenant architecture is a model where multiple customers share the same application and infrastructure while keeping their data logically isolated from one another.Authorization inside the MCP Server
In this pattern, each Client supplies its own credential—OAuth tokens, API keys, workspace keys, etc.—on every request. The Server reads the token from the request headers and performs the operation under that user’s identity.- Each Client injects its own token.
- The Server performs the action on behalf of that user.
- No user ever accesses data that is not theirs.
- The Server remains simple, predictable, and safe to expose.