Snipara Agents

Build AI agents that remember, share context, and coordinate. Snipara Agents provides the infrastructure layer for production agent workflows.

Standalone Product

Snipara Agents complements Snipara Context. You can use either or both together for comprehensive agent infrastructure.

The Problem

AI agents today are stateless. Every conversation starts fresh. Past decisions, user preferences, learned patterns — all gone. This creates several challenges:

  • No memory persistence — Agents forget everything between sessions
  • No knowledge sharing — One agent's discovery stays siloed
  • No coordination — Multiple agents can't work together effectively
  • Repeated context loading — Same docs fetched over and over

The Solution

Snipara Agents provides four core capabilities delivered via MCP (Model Context Protocol):

How It Works

Snipara Agents exposes MCP tools that your LLM can call to store, retrieve, and share memory. The LLM decides when to remember something important and when to recall relevant context.

// Agent remembers a user preference
rlm_remember({
  content: "User prefers TypeScript over JavaScript",
  type: "preference",
  confidence: 0.9
})
// Later, agent recalls relevant memories
rlm_recall({
  query: "What programming language does the user prefer?",
  limit: 5
})

Quick Start

Subscribe to Agents
Get API Key
Add MCP Config
Start Building

1. Subscribe to Snipara Agents

Go to your Billing page and subscribe to a Snipara Agents plan. Plans start at $15/month.

2. Get Your API Key

Navigate to your project's API Keys tab and create a new key. This key will be used to authenticate MCP requests.

3. Add MCP Configuration

Add Snipara Agents to your MCP client configuration:

{
  "mcpServers": {
    "snipara-agents": {
      "type": "http",
      "url": "https://api.snipara.com/mcp/YOUR_PROJECT_SLUG",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

4. Start Using Agent Tools

Once configured, your LLM will have access to memory and coordination tools. Ask it to "remember this for next time" or "recall what we discussed about authentication".

MCP Tools

ToolDescriptionPlan
rlm_rememberStore a memory with type, category, and TTLStarter+
rlm_recallSemantic recall of relevant memoriesStarter+
rlm_memoriesList memories with filtersStarter+
rlm_forgetDelete specific memoriesStarter+
rlm_swarm_createCreate a new agent swarmStarter+
rlm_swarm_joinJoin an existing swarmStarter+
rlm_claimClaim exclusive access to a resourcePro+
rlm_releaseRelease a resource claimPro+
rlm_state_get/setRead/write shared swarm statePro+
rlm_broadcastSend event to other agentsTeam+
rlm_task_createCreate a task in the queuePro+
rlm_task_claimClaim a task from the queuePro+
rlm_task_completeMark a task as completePro+

Pricing

PlanPriceMemoriesRetentionSwarms
Starter$15/mo1,0007 days1 (2 agents)
Pro$39/mo5,00030 days5 (5 agents each)
Team$79/mo25,00090 days20 (15 agents each)
Enterprise$199/moUnlimitedUnlimitedUnlimited (50 agents)

Next Steps