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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@leonardocrdso/obsidian-mcp

v1.1.1

Published

MCP server for Obsidian — full Local REST API integration with 22 tools

Readme

@leonardocrdso/obsidian-mcp

MCP server para integração com o Obsidian via plugin Local REST API.

Cobertura completa da API com 22 tools organizadas em 5 módulos.

Requisitos

  • Obsidian com o plugin Local REST API instalado e ativo
  • Node.js 18+ ou Bun

Configuração

1. Setup interativo (recomendado)

npx @leonardocrdso/obsidian-mcp --setup
  Obsidian MCP — Configuracao

  API Key: sua-api-key-aqui
  Host [127.0.0.1]: 192.168.1.50
  Porta [27124]:
  Protocolo [https]:

  Configuracao salva em ~/.obsidian-mcp.json

O setup pede cada item e salva em ~/.obsidian-mcp.json. Para reconfigurar, basta rodar --setup novamente.

2. Registrar no Claude Code

claude mcp add obsidian -- npx @leonardocrdso/obsidian-mcp

Variáveis de ambiente (alternativa)

Se preferir, configure via variáveis de ambiente em vez do setup interativo:

| Variável | Obrigatória | Padrão | Descrição | |---|---|---|---| | OBSIDIAN_API_KEY | Sim | — | API key do plugin Local REST API | | OBSIDIAN_HOST | Não | 127.0.0.1 | Host do Obsidian | | OBSIDIAN_PORT | Não | 27124 | Porta do plugin | | OBSIDIAN_PROTOCOL | Não | https | Protocolo (http ou https) |

{
  "mcpServers": {
    "obsidian": {
      "command": "npx",
      "args": ["-y", "@leonardocrdso/obsidian-mcp"],
      "env": {
        "OBSIDIAN_API_KEY": "sua-api-key-aqui"
      }
    }
  }
}

Prioridade de configuração: arquivo ~/.obsidian-mcp.json > variáveis de ambiente.

Desenvolvimento

git clone https://github.com/leonardocrdso/obsidian-mcp.git
cd obsidian-mcp
bun install
bun run dev --setup  # configurar
bun run dev          # iniciar servidor

Tools (22)

Vault (8)

| Tool | Descrição | |---|---| | vaultListFiles | Lista arquivos e pastas do vault | | vaultGetFile | Retorna conteúdo de um arquivo | | vaultGetMetadata | Retorna metadata (frontmatter, tags) | | vaultCreateFile | Cria ou substitui um arquivo | | vaultAppendContent | Adiciona conteúdo ao final | | vaultPatchContent | Insere conteúdo em local específico | | vaultDeleteFile | Remove um arquivo | | vaultOpenFile | Abre arquivo no Obsidian |

Commands (2)

| Tool | Descrição | |---|---| | commandsList | Lista comandos disponíveis | | commandsExecute | Executa um comando |

Search (2)

| Tool | Descrição | |---|---| | searchSimple | Busca texto no vault | | searchAdvanced | Busca com Dataview DQL ou JsonLogic |

Active File (5)

| Tool | Descrição | |---|---| | activeFileGet | Retorna conteúdo do arquivo ativo | | activeFileUpdate | Substitui conteúdo do arquivo ativo | | activeFileAppend | Adiciona conteúdo ao arquivo ativo | | activeFilePatch | Insere conteúdo em local específico | | activeFileDelete | Remove o arquivo ativo |

Periodic Notes (5)

| Tool | Descrição | |---|---| | periodicGetNote | Retorna nota periódica atual | | periodicCreateNote | Cria/substitui nota periódica | | periodicAppendContent | Adiciona conteúdo à nota periódica | | periodicPatchContent | Insere conteúdo em local específico | | periodicDeleteNote | Remove nota periódica |

License

MIT