MCP Hub
Back to servers

@velvetmonkey/flywheel-memory

MCP server that gives Claude full read/write access to your Obsidian vault. 76 tools for search, backlinks, graph queries, and mutations.

Updated
Feb 15, 2026

Quick Install

npx -y @velvetmonkey/flywheel-memory
Flywheel

Flywheel

Your vault already knows the answer. Flywheel finds it.

npm version MCP CI License: Apache-2.0 Platform Scale

One MCP server. Your Obsidian vault becomes a queryable knowledge graph -- backlinks, full-text search, auto-wikilinks, and structured writes. Load every tool or just the ones you need.


The Problem

You have 500 notes. Claude has to read them to answer a question.

Without FlywheelWith Flywheel
"What's overdue?"Read every file, hope you catch itIndexed query, <10ms, ~90 tokens
"What links here?"grep every fileget_backlinks -- pre-indexed graph
"Add a meeting note"Raw file write, no linkingWrite + auto-wikilink to existing notes
Token cost per query2,000-250,00050-200

Quick Start

1. Add .mcp.json to your vault root:

{
  "mcpServers": {
    "flywheel": {
      "command": "npx",
      "args": ["-y", "@velvetmonkey/flywheel-memory"]
    }
  }
}

2. Open your vault in Claude Code.

3. Ask a question. Claude can now search, query, and edit your vault.


Real Example: "How much have I billed Acme Corp?"

From the carter-strategy demo -- a solo consultant with 3 clients, 5 projects, and $27K in invoices.

❯ How much have I billed Acme Corp?

● flywheel › get_backlinks
  path: "clients/Acme Corp.md"
  ← invoices/INV-2025-047.md
    invoices/INV-2025-048.md
    projects/Acme Data Migration.md
    proposals/Acme Analytics Add-on.md

┌─ CLAUDE THINKS ───────────────────────────────────────┐
│ 2 invoices found. Pull frontmatter for amounts.       │
│ Skip projects, proposals -- not billing data.         │
└───────────────────────────────────────────────────────┘

● flywheel › get_note_metadata
  path: "invoices/INV-2025-047.md"
  ← amount: 15000, status: paid, period: November 2025

● flywheel › get_note_metadata
  path: "invoices/INV-2025-048.md"
  ← amount: 12000, status: pending, period: December 2025

┌─ RESULT ──────────────────────────────────────────────┐
│ Acme Corp Billing: $27,000                            │
│                                                       │
│   Paid:    $15,000 — Acme Data Migration (Nov 2025)   │
│   Pending: $12,000 — Acme Data Migration (Dec 2025)   │
│                                                       │
│ 4 tool calls · ~160 tokens · 0 files read             │
└───────────────────────────────────────────────────────┘

Now write something:

❯ Log that I finished the Acme strategy deck

● flywheel › vault_add_to_section
  path: "daily-notes/2026-01-04.md"
  section: "Log"
  content: "finished the [[Acme Corp]] strategy deck"
                       ↑ auto-linked because Acme Corp.md exists

Try it yourself: cd demos/carter-strategy && claude


Your graph builds itself

When Claude writes to your vault, Flywheel scans every note title and alias, then links automatically:

Input:  "Met with Sarah about the data migration"
Output: "Met with [[Sarah Mitchell]] about the [[Acme Data Migration]]"

Every write operation strengthens your knowledge graph. No manual linking. No broken references. The more you use it, the more connected it gets.

That's the flywheel.


Where This Goes

Flywheel is one layer of something bigger:

voice → transcription → AI agent → structured knowledge → queryable vault

Speak into your phone. Your AI processes it. Flywheel writes it to your vault with proper wikilinks, frontmatter, and structure. Tomorrow, you ask a question and the answer is already there -- linked, indexed, searchable.

Your vault isn't a filing cabinet. It's a second brain that actually works.


Try It

6 production-ready vaults representing real knowledge work:

DemoYou areAsk thisNotes
carter-strategySolo consultant"How much have I billed Acme Corp?"32
artemis-rocketRocket engineer"What's blocking the propulsion milestone?"63
startup-opsSaaS co-founder"What's our MRR?"31
nexus-labPhD researcher"How does AlphaFold connect to my experiment?"32
solo-operatorContent creator"How's revenue this month?"16
support-deskSupport agent"What's Sarah Chen's situation?"12
git clone https://github.com/velvetmonkey/flywheel-memory.git
cd flywheel-memory/demos/carter-strategy && claude

Tools

Flywheel ships 15 tool categories. Load all of them, or just the ones you need.

Presets:

  • full (default) -- everything
  • minimal -- search, backlinks, tasks, notes (~24 tools, great for voice/mobile)

Or compose your own:

{
  "mcpServers": {
    "flywheel": {
      "command": "npx",
      "args": ["-y", "@velvetmonkey/flywheel-memory"],
      "env": {
        "FLYWHEEL_TOOLS": "search,backlinks,tasks,notes"
      }
    }
  }
}

The fewer tools you load, the less context Claude needs to pick the right one.

See docs/TOOLS.md for the full reference.


Configuration

VariableDefaultDescription
VAULT_PATHcwdPath to your Obsidian vault
FLYWHEEL_TOOLSfullTool preset or comma-separated categories

See docs/CONFIGURATION.md for all options, presets, and platform-specific setup.


Prove It

1,757 tests. Verified at 100,000 notes. Every demo vault is a real test case.

git clone https://github.com/velvetmonkey/flywheel-memory.git
cd flywheel-memory && npm install && npm test

Docs

TOOLS.mdFull tool reference
ARCHITECTURE.mdIndex strategy, FTS5, graph, auto-wikilinks
CONFIGURATION.mdEnv vars, presets, custom tool sets
VISION.mdThe flywheel effect and where this goes

License

Apache-2.0 -- GitHub · Issues

Reviews

No reviews yet

Sign in to write a review