Choose the right connection method.
Snipara has two primary product surfaces. Hosted MCP is for LLM agents. API / SDK is for software systems. Local tooling helps only when a workstation workflow needs it.
https://api.snipara.com/mcp/YOUR_PROJECT_SLUG.For agents, use Hosted MCP first.
Use HTTP MCP when the client supports it. Use SSE only when the client requires streaming transport. Local stdio and snipara-mcp are advanced compatibility and testing paths, not the main product promise.
Transport Matrix
Use the project slug consistently across all MCP transports. Pick the transport your client actually supports instead of mixing setup stories.
Best when the client accepts plain remote MCP over HTTP and you want the simplest setup.
https://api.snipara.com/mcp/YOUR_PROJECT_SLUGUse only for clients that explicitly require streaming Server-Sent Events transport.
https://api.snipara.com/mcp/YOUR_PROJECT_SLUG/sseUse for stdio compatibility, client package development, and advanced tests powered by uvx snipara-mcp. Prefer Hosted MCP when remote MCP is supported.
SNIPARA_PROJECT_SLUG=YOUR_PROJECT_SLUGCode Graph v1
In v1, snipara_context_query stays doc-first. It remains the right default for docs, notes, markdown, and narrative context.
For structural code questions, use snipara_code_callers, snipara_code_imports, snipara_code_neighbors, or snipara_code_shortest_path.
Primary path for LLM agents and MCP-compatible assistants.
Primary path for apps, backends, integrators, and pipelines.
Guided free account, auth, Hosted MCP, Context, and Memory onboarding.
Copy-ready rules and templates for Codex, Claude Code, Cursor, and ChatGPT.
Optional helper on top of hosted Snipara.
Business context onboarding and verified mission manifests.
Hosted MCP setup for Anthropic CLI.
Optional plugin layer with slash commands, skills, hooks, and Snipara Sandbox helpers.
Desktop and API wiring.
OpenClaw-specific hooks and the recommended Snipara setup for coordinated agents.
Package map for advanced, testing, and compatibility work.
- LLM agents use Hosted MCP.
- Apps, integrators, backends, and pipelines use API / SDK.
- Companion is optional local workflow help, not a replacement for MCP or API.
- create-snipara is the simple Context + Memory onboarding package.
- snipara-business is for business-context onboarding and mission manifest workflows.
- snipara-mcp is developer tooling for local stdio, testing, and compatibility.
- Code graph questions should go to the `snipara_code_*` tools, not generic docs search.
{
"mcpServers": {
"snipara": {
"type": "url",
"url": "https://api.snipara.com/mcp/YOUR_PROJECT_SLUG",
"headers": {
"X-API-Key": "snp-YOUR-API-KEY"
}
}
}
}If you prefer local stdio, use the same project slug through SNIPARA_PROJECT_SLUG instead of switching to raw IDs.