Grantai

Created By
solonai-com3 months ago
Fast, sub millisecond, local on device long term memory for LLMs, Coding Tools and AI Agents. Recall exact details from yesterday of five years ago. Install in 5 minutes.
Overview

GrantAi

Infinite Memory for AI
Local. Private. Secure.

WebsiteDownloadPricingDocumentation


What is GrantAi?

GrantAi is the shared memory layer for AI agents.

Coordination frameworks are everywhere — CrewAI, AutoGen, LangGraph. But agents still lose everything when a session ends. Context windows reset. Knowledge evaporates. Each agent starts from zero.

GrantAi solves this:

  • Persistent Memory — Knowledge survives sessions, accumulates over time
  • Shared Across Agents — Multiple AI tools read and write to the same brain
  • 12ms Recall — Sub-second retrieval regardless of memory size
  • 100% Local — Your data never leaves your machine
  • AES-256 Encrypted — Secure at rest, zero data egress

Quick Start

macOS / Linux (Native)

# 1. Download from https://solonai.com/grantai/download
# 2. Extract and install
./install.sh YOUR_LICENSE_KEY

# 3. Restart your AI tool (Claude Code, Cursor, etc.)

Docker (All Platforms)

docker pull ghcr.io/solonai-com/grantai-memory:1.8.5

Add to your Claude Desktop config (~/.config/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "grantai": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "--pull", "always",
               "-v", "grantai-data:/data",
               "-e", "GRANTAI_LICENSE_KEY=YOUR_KEY",
               "ghcr.io/solonai-com/grantai-memory:1.8.5"]
    }
  }
}

Supported Platforms

PlatformMethodStatus
macOS (Apple Silicon)Native
Linux (x64)Native
WindowsDocker
All PlatformsDocker

MCP Tools

GrantAi provides these tools to your AI:

ToolDescription
grantai_inferQuery memory for relevant context
grantai_teachStore content for future recall
grantai_learnImport files or directories
grantai_healthCheck server status
grantai_summarizeStore session summaries
grantai_projectTrack project state
grantai_snippetStore code patterns
grantai_gitImport git commit history
grantai_captureSave conversation turns for continuity

Multi-Agent Memory Sharing

Multiple agents can share knowledge through GrantAi's memory layer.

Basic shared memory (no setup required)

# Any agent stores
grantai_teach(
    content="API rate limit is 100 requests/minute.",
    source="api-notes"
)

# Any agent retrieves
grantai_infer(input="API rate limiting")

All agents read from and write to the same memory pool. No configuration needed.

With agent attribution (optional)

Use speaker to track which agent stored what, and from_agents to filter retrieval:

# Store with identity
grantai_teach(
    content="API uses Bearer token auth.",
    source="api-research",
    speaker="researcher"  # optional
)

# Retrieve from specific agent
grantai_infer(
    input="API authentication",
    from_agents=["researcher"]  # optional filter
)

When to use speaker

ScenarioUse speaker?Why
Shared knowledge baseNoAll contributions equal, no filtering needed
Session continuityNoSame context, just persist and retrieve
Research → Code handoffYesCoder filters for researcher's findings only
Role-based trustYesSecurity agent's input treated differently

Framework integration

GrantAi works with any MCP-compatible client. Point your agents at the same GrantAi instance:

{
  "mcpServers": {
    "grantai": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "--pull", "always",
               "-v", "grantai-data:/data",
               "-e", "GRANTAI_LICENSE_KEY=YOUR_KEY",
               "ghcr.io/solonai-com/grantai-memory:1.8.5"]
    }
  }
}

All agents using this config share the same memory volume (grantai-data).

Pricing

  • Free Trial — 30 days, no credit card required
  • Personal — $29/month or $299/year
  • Team — $25/seat/month

View full pricing →

Documentation

Support

License

GrantAi is proprietary software. See Terms of Service.


Get Started →

Server Config

{
  "mcpServers": {
    "grantai": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GRANTAI_LICENSE_KEY",
        "ghcr.io/solonai-com/grantai-memory:1.8.7"
      ],
      "env": {
        "GRANTAI_LICENSE_KEY": "<YOUR_LICENSE_KEY>"
      }
    }
  }
}
Project Info
Created At
3 months ago
Updated At
3 months ago
Author Name
solonai-com
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

2 days ago