obsidian-mcp-server
Version:
MCP server for Obsidian vaults — read, write, search, and surgically edit notes, tags, and frontmatter via the Local REST API plugin. STDIO or Streamable HTTP.
102 lines (101 loc) • 3.19 kB
JSON
{
"name": "obsidian-mcp-server",
"version": "3.2.4",
"mcpName": "io.github.cyanheads/obsidian-mcp-server",
"description": "MCP server for Obsidian vaults — read, write, search, and surgically edit notes, tags, and frontmatter via the Local REST API plugin. STDIO or Streamable HTTP.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"obsidian-mcp-server": "dist/index.js"
},
"files": [
"changelog/",
"dist/",
"README.md",
"LICENSE",
"CLAUDE.md",
"AGENTS.md",
"Dockerfile",
"manifest.json",
"server.json"
],
"scripts": {
"build": "bun run scripts/build.ts",
"rebuild": "bun run scripts/clean.ts && bun run build",
"clean": "bun run scripts/clean.ts",
"devcheck": "bun run scripts/devcheck.ts",
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
"tree": "bun run scripts/tree.ts",
"list-skills": "bun run scripts/list-skills.ts",
"format": "biome check --write .",
"format:unsafe": "biome check --write --unsafe .",
"lint:mcp": "bun run scripts/lint-mcp.ts",
"lint:packaging": "bun run scripts/lint-packaging.ts",
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/obsidian-mcp-server.mcpb",
"changelog:build": "bun run scripts/build-changelog.ts",
"changelog:check": "bun run scripts/build-changelog.ts --check",
"test": "bunx vitest run",
"start": "node dist/index.js",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
"release:github": "bun run scripts/release-github.ts",
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"obsidian",
"obsidian-vault",
"knowledge-base",
"note-taking",
"ai-tools",
"typescript"
],
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/obsidian-mcp-server#readme)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/obsidian-mcp-server.git"
},
"homepage": "https://github.com/cyanheads/obsidian-mcp-server#readme",
"bugs": {
"url": "https://github.com/cyanheads/obsidian-mcp-server/issues"
},
"license": "Apache-2.0",
"engines": {
"bun": ">=1.3.11",
"node": ">=24.0.0"
},
"packageManager": "bun@1.3.11",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cyanheads/mcp-ts-core": "^0.9.21",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.2.0",
"pino-pretty": "^13.1.3",
"undici": "^8.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.1",
"depcheck": "^1.4.7",
"ignore": "^7.0.5",
"tsc-alias": "^1.8.17",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}