Developer Packages

Most users need one of two npm packages: create-snipara to connect Context + Memory, and snipara-business to prepare business context. Hosted MCP remains the agent surface; API / SDK remains the software surface.

Primary path
For LLM agents: use Hosted MCP
Do not start package selection by asking whether to install snipara-mcp. Start by connecting the agent to Hosted MCP.
Primary path
For product integration: use API / SDK
Use SDKs and REST contracts when Snipara is part of your product, backend, or data pipeline.

Default Recommendation

  • For LLM agents: use Hosted MCP.
  • For product integration: use API / SDK.
  • Use create-snipara for Context + Memory onboarding, auth, local config, and doctor checks.
  • Use snipara-companion only for optional terminal workflows.
  • Use snipara-business when the user wants business-context onboarding or a verified mission manifest from local files.
  • Only install specialized packages when you already know you need them.

Quick Matrix

PackageUse it forAudienceStatus
snipara-mcpLocal stdio bridge, client package development, advanced MCP testingDevelopers and compatibility usersDeveloper tooling
create-sniparaContext + Memory onboarding, free signup, local config generation, doctor, repair, companion workflow setupUsers who want a simple agent connection pathOnboarding
snipara-businessCompany context bootstrap and verified mission manifests for RFPs, proposals, audits, onboarding, and due diligenceBusiness users and LLM agents working from local or synced foldersBusiness onboarding
sniparaPython SDK, programmatic workflows, config-driven Python integrationApp and backend developersAPI / SDK
snipara-memoryStandalone memory engine when memory itself is the product you wantSpecialized teams and OSS adoptersSpecialized
snipara-orchestratorProduction-first validation, proofs, drift detection, advanced agent workflowsAdvanced teamsAdvanced
snipara-sandboxSandboxed code execution runtime that complements SniparaUsers who need execution, not just contextAdjacent
snipara-openclaw-hooksOpenClaw-specific hook automationOpenClaw usersSpecialized
snipara-companionDefault local helper CLI and hook-oriented workflowsUsers who want managed plan phases and local workflow commandsDefault helper
snipara-openclaw-installLegacy OpenClaw onboarding wrapperNone for new installsArchived

Choose by Use Case

MCP for Codex, Claude Code, Cursor, ChatGPT, Gemini, VS Code

Start with create-snipara when the user wants guided onboarding and auth. Start with Hosted MCP directly when they already have the project slug and API key. Use local snipara-mcp only when the client needs stdio, you want browser-login compatibility testing, or you are developing MCP client behavior.

Codex specifically

Use Hosted MCP config plus AGENTS.md. create-snipara installs snipara-companion by default for compaction-safe workflow commands, but local snipara-mcp is only needed for stdio compatibility, development, or tests.

Business context onboarding

Use snipara-business when the user wants Claude, Codex, ChatGPT, or Cursor to prepare reusable company context from old offers and decks, or to prepare a verified mission context pack before the LLM drafts a final document.

Python application integration

Use the REST API or snipara SDK. Do not route product backend work through a local agent helper flow.

Production validation and orchestration

Use snipara-orchestrator only if you need proof-based validation and production drift detection. It is an advanced package, not the default install path.

Companion vs orchestrator

Do not merge snipara-companion and snipara-orchestrator. They solve different problems: companion is a local helper CLI for hook-oriented workflows, while orchestrator is an advanced Python package for production validation and orchestration.

OpenClaw

Connect through Hosted MCP first. Use create-snipara only if you want scaffolding, then add snipara-openclaw-hooks for OpenClaw-specific automation. The older snipara-openclaw-install wrapper is archived.

Recommended Paths

Agent Connection

npx create-snipara

Guided free-account, auth, Hosted MCP, context, and memory onboarding.

Product Integration

pip install snipara

Use API / SDK contracts for backend-to-backend and application workflows.

Related Guides