§ Interfaces
MCP Server. Remote, hosted, ready.
OctaMem runs the server for you at a fixed address. You do not install or host anything. Your API key proves it is your account.
Host
mcp.octamem.com
Transport
Streamable HTTP
Auth
API key or bearer
What MCP is
MCP (Model Context Protocol) is an open way for AI apps to talk to tools and data over the network. Use this endpoint with any product or workflow that can act as an MCP client: browser-based assistants, coding environments, automation tools, or software you ship yourself. Each product has its own screen for “MCP server”, “remote server”, or similar, paste the URL or base URL there as their form asks.
Quick test URL
Swap YOUR_API_KEY for the key from platform.octamem.com. This single link is the easiest way to try the connection when your client accepts a full URL with the key in the query string.
https://mcp.octamem.com?api_key=YOUR_API_KEYBase URL + bearer token
Some clients want only the host and a separate secret. Use the same key with a standard bearer header.
https://mcp.octamem.comAuthorization: Bearer YOUR_API_KEYTesting
After you substitute your real key, add this MCP server inside your client and run a simple action (for example listing tools or calling memory). If the client connects, OctaMem is reachable. If not, double-check the key and that outbound HTTPS is allowed.
Security
- Treat API keys like passwords. Do not paste live keys into public pages, support chats, or source code.
- Rotate a key if it may have leaked.
- Requests without a valid key are rejected.