npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/obsidian-memory-mcp

v1.0.0

Published

MCP server that stores AI memories as Markdown files for visualization in Obsidian's graph view

Readme

Obsidian Memory MCP

MCP server that stores AI memories as Markdown files for visualization in Obsidian's graph view.

About

This project is a modified version of Anthropic's memory server that has been adapted for Obsidian integration. The original server stored memories in JSON format, while this version stores them as individual Markdown files with Obsidian-compatible [[link]] syntax for graph visualization.

Key Changes from Original

  • Storage Format: Changed from JSON to individual Markdown files
  • Obsidian Integration: Added [[link]] syntax for relations
  • YAML Frontmatter: Metadata stored in frontmatter instead of JSON
  • File Structure: Each entity becomes a separate .md file
  • Removed Features: Simplified to focus on Markdown-only storage

Features

  • Markdown Storage: Individual .md files for each entity
  • Obsidian Integration: Uses [[link]] syntax for graph visualization
  • Knowledge Graph: Store entities, relations, and observations
  • Search Functionality: Query across all stored memories
  • YAML Frontmatter: Metadata stored in frontmatter

Storage Format

Each entity is stored as an individual Markdown file with:

  • YAML frontmatter for metadata (entityType, created, updated)
  • Obsidian-compatible [[links]] for relations
  • Organized sections for observations and relations

Example entity file (John_Doe.md):

---
entityType: person
created: 2025-07-10
updated: 2025-07-10
---

# John Doe

## Observations
- Works at Tech Corp
- Expert in TypeScript
- Lives in Tokyo

## Relations
- [[Manager of::Alice Smith]]
- [[Collaborates with::Bob Johnson]]
- [[Located in::Tokyo Office]]

Installation & Configuration

git clone https://github.com/YuNaga224/obsidian-memory-mcp.git
cd obsidian-memory-mcp
npm install
npm run build

Then configure in Claude Desktop:

{
  "mcpServers": {
    "obsidian-memory": {
      "command": "node",
      "args": ["/full/path/to/obsidian-memory-mcp/dist/index.js"],
      "env": {
        "MEMORY_DIR": "/path/to/your/obsidian/vault"
      }
    }
  }
}

Usage with Obsidian

  1. Configure Claude Desktop with one of the options above
  2. Restart Claude Desktop
  3. Use the MCP memory tools to create entities and relations
  4. Open Obsidian and view the graph

The knowledge graph will be visualized with:

  • Entity files as nodes
  • [[links]] as edges
  • Different colors for different entity types (if configured in Obsidian)

API

The server exposes the following tools:

  • create_entities: Create new entities
  • create_relations: Create relations between entities
  • add_observations: Add observations to existing entities
  • delete_entities: Delete entities and related data
  • delete_observations: Remove specific observations
  • delete_relations: Remove relations
  • read_graph: Get the entire knowledge graph
  • search_nodes: Search entities by query
  • open_nodes: Get specific entities by name

Development

npm run watch  # Watch for changes and rebuild

Credits

This project is based on Anthropic's memory server from the Model Context Protocol servers collection. We thank Anthropic for releasing the original implementation under the MIT license.

License

MIT License - see LICENSE file for details.

Original memory server: Copyright (c) 2024 Anthropic, PBC
Obsidian integration modifications: Copyright (c) 2025 YuNaga224