agrasandhany
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agrasandhanysearch my notes for project ideas"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AGrasandhanY
From Sanskrit agrasandhanī (uh-gruh-sun-DHAA-nee) — the mythic ledger that records every action of every soul.
agy — turn local notes into long-term memory for AI agents
Status: Alpha
What is Agrasandhany (agy)
Local, plain-text notes, written for yourself. That's the whole idea — and agy turns them into memory your agents can search over.
Notes become memories — each file, turned into searchable facts.
Folders become scopes —
projects/backend/design.mdis taggedprojects/backend, automatically.Living summaries — a summary of notes by folder, auto-refreshed as they change.
vault (files) → daemon (sync) → Hindsight (memory)
↑
MCP (agents)The filesystem is the source of truth — agy mirrors your files; it's not a backup. Delete a note and its memory clears on the next sync.
Under the hood: agy embeds Hindsight — a local retain/recall engine that extracts memories from your notes.
Related MCP server: Bruin
Prerequisites
Linux or macOS (launchd auto-start requires macOS)
An LLM provider — any Hindsight-supported provider works.
Install
git clone https://github.com/yugandhar-maram/agrasandhany.git ~/agrasandhany
cd ~/agrasandhanyQuick start (full guide)
# Configure LLM access
cp .env.example .env # defaults to Claude Code
export AGY_ENV_FILE=~/agrasandhany/.env
# Start the daemon
uv run agy daemon start
# Register a vault
uv run agy vault add ~/notes --name notes
# The daemon picks up new vaults automaticallyMCP Integration
This gives your agent access to your memories. Add to your agent's MCP config (e.g. .claude/settings.json):
{
"mcpServers": {
"agrasandhany": {
"command": "uv",
"args": ["run", "--project", "~/agrasandhany", "python", "-m", "agy.mcp"],
"env": {
"AGY_ENV_FILE": "~/agrasandhany/.env",
"AGY_VAULT": "notes"
}
}
}
}Docs
usage — setup, daemon, vault, MCP
configuration — env vars and vault settings
operations — logs, jobs, troubleshooting
License
Dedicated to my wife — for the evenings, the weekends, and the patience. This wouldn't exist without the space you made for it.
This server cannot be deployed
Maintenance
Related MCP Connectors
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
One memory, every AI. A shared, user-owned markdown memory your AI clients read and write over MCP.
MCP-native notes and memory for ChatGPT, Claude, and other AI tools.
Persistent memory for AI agents across Claude, ChatGPT and any MCP client.
Related MCP Servers
- AlicenseAqualityDmaintenanceA local-first MCP server that exposes personal notes and files as unified semantic context for AI agents via vector search and file monitoring.6MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.02MIT
- AlicenseAqualityFmaintenanceTurns a local folder of notes and documents into a searchable knowledge base for AI assistants via MCP, enabling semantic search, reading, and adding notes entirely on-device.49MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI tools to query a user's private, locally stored memories (notes, documents) with source citations, using the MCP protocol.17MIT