How do I connect SaSame to another MCP client?
Portable configuration and validation guidance for compatible MCP clients outside the named ChatGPT and Claude flows.
- Collection
- documentation
- Updated
- 2026-08-24
- min read
- 4
Configure a remote Streamable HTTP server using either the keyless public endpoint or the OAuth account endpoint, refresh tools and verify a real call.
Confirm transport support
The client must support remote MCP over Streamable HTTP. A client that accepts only local stdio servers or a legacy transport may require different configuration or may not be compatible. Use the client’s current documentation as the authority for its configuration shape.
Use the portable configuration
A common configuration shape is:
{
"mcpServers": {
"sasame-public": { "type": "http", "url": "https://live-vps.sasame.online/public-mcp" },
"sasame-knowledge": { "type": "http", "url": "https://srl-sasame.com/api/mcp" },
"sasame-account": { "type": "http", "url": "https://live-sasame.sasame.online/mcp" }
}
}The public and knowledge servers are keyless. The account server requires an OAuth 2.1 client with PKCE and opens Google-backed Account Control consent. If the client cannot complete remote OAuth, use only the keyless surfaces; never copy a bearer token into static configuration.
Refresh and verify
For the public server, call start_here. For the authenticated server, complete OAuth and call session_info followed by account_status. Confirm a real JSON-RPC response and the intended organization before treating installation as complete.
Common failures
A 401 from the public URL usually means the wrong endpoint was configured. A 401 from the account URL means OAuth has not completed or the token is invalid. No tools often means the client did not refresh, lacks Streamable HTTP/OAuth support, or rejected its own configuration schema. Record the exact client/version and error before changing endpoints.
Security boundary
Do not add a token to the public configuration. The public surface is intentionally bounded and keyless; private account or Owner operations use separate authenticated surfaces.
Examples
3- 01
{ "type": "http", "url": "https://live-vps.sasame.online/public-mcp" }
- 02
{ "type": "http", "url": "https://srl-sasame.com/api/mcp" }
- 03
{ "type": "http", "url": "https://live-sasame.sasame.online/mcp" }