Description

An Obsidian plugin that exposes PDF evidence and vault context through an MCP bridge. Enables extraction of text from PDFs, searching for specific snippets, and generating PDF++ citations with precise page and selection coordinates using fuzzy matching algorithms. Provides comprehensive vault operations including markdown file management, Dataview queries, and content search. Includes a sidebar panel for displaying answers with evidence links and supports both direct HTTP API access and MCP client integration through a bundled bridge server.

Installation

git clone https://github.com/hi-jin/obsidian-pdf-evidence

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "obsidian-pdf-evidence": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}