Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Obsidian Mcp Tools

    Add Obsidian integrations like semantic search and custom Templater prompts to Claude or any MCP client. TypeScript-based implementation.

    420 stars
    TypeScript
    Updated Nov 4, 2025
    mcp
    mcp-server
    model-context-protocol

    Table of Contents

    • Features
    • Prerequisites
    • Required
    • Recommended
    • Installation
    • Installation Locations
    • Configuration
    • Troubleshooting
    • Security
    • Binary Distribution
    • Runtime Security
    • Binary Verification
    • Reporting Security Issues
    • Development
    • Using Cline
    • Workspace
    • Building
    • Requirements
    • Contributing
    • Support
    • Changelog
    • License
    • Footnotes

    Table of Contents

    • Features
    • Prerequisites
    • Required
    • Recommended
    • Installation
    • Installation Locations
    • Configuration
    • Troubleshooting
    • Security
    • Binary Distribution
    • Runtime Security
    • Binary Verification
    • Reporting Security Issues
    • Development
    • Using Cline
    • Workspace
    • Building
    • Requirements
    • Contributing
    • Support
    • Changelog
    • License
    • Footnotes

    Documentation

    MCP Tools for Obsidian

    GitHub release (latest by date)

    Build status

    License

    Features | Installation | Configuration | Troubleshooting | Security | Development | Support

    🔄 Seeking Project Maintainers

    This project is actively seeking dedicated maintainers to take over development and community management. The project will remain under the current GitHub account for Obsidian plugin store compliance, with new maintainers added as collaborators.

    Interested? Join our Discord community or check our maintainer requirements.

    Timeline: Applications open until September 15, 2025. Selection by September 30, 2025.

    MCP Tools for Obsidian enables AI applications like Claude Desktop to securely access and work with your Obsidian vault through the Model Context Protocol (MCP). MCP is an open protocol that standardizes how AI applications can interact with external data sources and tools while maintaining security and user control. [^2]

    This plugin consists of two parts:

    1. An Obsidian plugin that adds MCP capabilities to your vault

    2. A local MCP server that handles communication with AI applications

    When you install this plugin, it will help you set up both components. The MCP server acts as a secure bridge between your vault and AI applications like Claude Desktop. This means AI assistants can read your notes, execute templates, and perform semantic searches - but only when you allow it and only through the server's secure API. The server never gives AI applications direct access to your vault files. [^3]

    Privacy Note: When using Claude Desktop with this plugin, your conversations with Claude are not used to train Anthropic's models by default. [^1]

    Features

    When connected to an MCP client like Claude Desktop, this plugin enables:

    • Vault Access: Allows AI assistants to read and reference your notes while maintaining your vault's security [^4]
    • Semantic Search: AI assistants can search your vault based on meaning and context, not just keywords [^5]
    • Template Integration: Execute Obsidian templates through AI interactions, with dynamic parameters and content generation [^6]

    All features require an MCP-compatible client like Claude Desktop, as this plugin provides the server component that enables these integrations. The plugin does not modify Obsidian's functionality directly - instead, it creates a secure bridge that allows AI applications to work with your vault in powerful ways.

    Prerequisites

    Required

    • Obsidian v1.7.7 or higher
    • Claude Desktop installed and configured
    • Local REST API plugin installed and configured with an API key

    Recommended

    • Templater plugin for enhanced template functionality
    • Smart Connections plugin for semantic search capabilities

    Installation

    [!Important]

    This plugin requires a secure server component that runs locally on your computer. The server is distributed as a signed executable, with its complete source code available in packages/mcp-server/. For details about our security measures and code signing process, see the Security section.

    1. Install the plugin from Obsidian's Community Plugins

    2. Enable the plugin in Obsidian settings

    3. Open the plugin settings

    4. Click "Install Server" to download and configure the MCP server

    Clicking the install button will:

    • Download the appropriate MCP server binary for your platform
    • Configure Claude Desktop to use the server
    • Set up necessary permissions and paths

    Installation Locations

    • Server Binary: {vault}/.obsidian/plugins/obsidian-mcp-tools/bin/
    • Log Files:
    • macOS: ~/Library/Logs/obsidian-mcp-tools
    • Windows: %APPDATA%\obsidian-mcp-tools\logs
    • Linux: ~/.local/share/obsidian-mcp-tools/logs

    Configuration

    After clicking the "Install Server" button in the plugin settings, the plugin will automatically:

    1. Download the appropriate MCP server binary

    2. Use your Local REST API plugin's API key

    3. Configure Claude Desktop to use the MCP server

    4. Set up appropriate paths and permissions

    While the configuration process is automated, it requires your explicit permission to install the server binary and modify the Claude Desktop configuration. No additional manual configuration is required beyond this initial setup step.

    Troubleshooting

    If you encounter issues:

    1. Check the plugin settings to verify:

    • All required plugins are installed
    • The server is properly installed
    • Claude Desktop is configured

    2. Review the logs:

    • Open plugin settings
    • Click "Open Logs" under Resources
    • Look for any error messages or warnings

    3. Common Issues:

    • Server won't start: Ensure Claude Desktop is running
    • Connection errors: Verify Local REST API plugin is configured
    • Permission errors: Try reinstalling the server

    Security

    Binary Distribution

    • All releases are built using GitHub Actions with reproducible builds
    • Binaries are signed and attested using SLSA provenance
    • Release workflows are fully auditable in the repository

    Runtime Security

    • The MCP server runs with minimal required permissions
    • All communication is encrypted
    • API keys are stored securely using platform-specific credential storage

    Binary Verification

    The MCP server binaries are published with SLSA Provenance attestations, which provide cryptographic proof of where and how the binaries were built. This helps ensure the integrity and provenance of the binaries you download.

    To verify a binary using the GitHub CLI:

    1. Install GitHub CLI:

    bash
    # macOS (Homebrew)
       brew install gh
    
       # Windows (Scoop)
       scoop install gh
    
       # Linux
       sudo apt install gh  # Debian/Ubuntu

    2. Verify the binary:

    bash
    gh attestation verify --owner jacksteamdev

    The verification will show:

    • The binary's SHA256 hash
    • Confirmation that it was built by this repository's GitHub Actions workflows
    • The specific workflow file and version tag that created it
    • Compliance with SLSA Level 3 build requirements

    This verification ensures the binary hasn't been tampered with and was built directly from this repository's source code.

    Reporting Security Issues

    Please report security vulnerabilities via our security policy.

    Do not report security vulnerabilities in public issues.

    Development

    This project uses a monorepo structure with feature-based architecture. For detailed project architecture documentation, see .clinerules.

    Using Cline

    Some code in this project was implemented using the AI coding agent Cline. Cline uses cline_docs/ and the .clinerules file to understand project architecture and patterns when implementing new features.

    Workspace

    This project uses a Bun workspace structure:

    code
    packages/
    ├── mcp-server/        # Server implementation
    ├── obsidian-plugin/   # Obsidian plugin
    └── shared/           # Shared utilities and types

    Building

    1. Install dependencies:

    bash
    bun install

    2. Build all packages:

    bash
    bun run build

    3. For development:

    bash
    bun run dev

    Requirements

    • bun v1.1.42 or higher
    • TypeScript 5.0+

    Contributing

    **Before contributing, please read our Contributing Guidelines including our community standards and behavioral expectations.**

    1. Fork the repository

    2. Create a feature branch

    3. Make your changes

    4. Run tests:

    bash
    bun test

    5. Submit a pull request

    We welcome genuine contributions but maintain strict community standards. Be respectful and constructive in all interactions.

    Support

    • 💬 Join our Discord for questions, discussions, and community support
    • Open an issue for bug reports and feature requests

    **Please read our Contributing Guidelines before posting.** We maintain high community standards and have zero tolerance for toxic behavior.

    Changelog

    See GitHub Releases for detailed changelog information.

    License

    MIT License

    Footnotes

    Similar MCP

    Based on tags & features

    • MC

      Mcp Ipfs

      TypeScript·
      11
    • MC

      Mcpjungle

      Go·
      617
    • MC

      Mcp Open Library

      TypeScript·
      42
    • ME

      Metmuseum Mcp

      TypeScript·
      14

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Ipfs

      TypeScript·
      11
    • MC

      Mcpjungle

      Go·
      617
    • MC

      Mcp Open Library

      TypeScript·
      42
    • ME

      Metmuseum Mcp

      TypeScript·
      14

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k