mcp-notes-server

Akshitaa-V/mcp-notes-server
★ 0 stars Python AI/LLM Updated today
A real MCP server exposing a note-search tool over stdio, with a working test client — built as the direct follow-up to rag-claude-skill.
View on GitHub → Try with Claude — $10 free →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-notes-server": {
      "command": "uvx",
      "args": [
        "mcp-notes-server"
      ]
    }
  }
}

Or install with pip: pip install mcp-notes-server

README Excerpt

A real MCP (Model Context Protocol) server that exposes a note-search tool. Built as the direct follow-up to my rag-claude-skill project — same retrieval logic, now actually wired up to the real protocol instead of just documented as a "next step." Runs an MCP server over stdio with one tool, `search_notes(query, top_k)`, which searches a local folder of `.txt` notes using TF-IDF and cosine similarity and returns the top-matching chunks, labeled with source and relevance score.