{ "name": "kobsidian-mcp", "version": "0.3.7", "description": "TypeScript MCP server for Obsidian with a filesystem-first LLM Wiki layer, Dataview / Canvas / Kanban / Mermaid / Marp / Templates tools, and both stdio and Streamable HTTP transports.", "type": "module", "mcpName": "io.github.bezata/kobsidian-mcp", "mcp": { "protocolVersion": "2025-11-25" }, "keywords": [ "mcp", "model-context-protocol", "obsidian", "markdown", "wiki", "knowledge-base", "dataview", "canvas", "kanban", "bun", "hono" ], "author": "Behzat Can Acele ", "license": "MIT", "homepage": "https://github.com/bezata/kObsidian", "repository": { "type": "git", "url": "git+https://github.com/bezata/kObsidian.git" }, "bugs": { "url": "https://github.com/bezata/kObsidian/issues" }, "engines": { "node": ">=20", "bun": ">=1.2.15" }, "bin": { "kobsidian-mcp": "./dist/server/stdio.js", "kobsidian-mcp-http": "./dist/server/http.js" }, "files": ["dist/**", "manifest.json", "server.json", "README.md", "LICENSE", "CHANGELOG.md"], "publishConfig": { "access": "public" }, "scripts": { "dev:stdio": "bun run src/server/stdio.ts", "dev:http": "bun run src/server/http.ts", "build": "bun build src/server/stdio.ts --target node --outdir dist/server --banner '#!/usr/bin/env node' && bun build src/server/http.ts --target bun --outdir dist/server", "build:compile": "bun build --compile --target=bun src/server/stdio.ts --outfile dist/kobsidian", "bundle:mcpb": "bun run scripts/make-mcpb.mjs", "inventory": "bun run src/server/generate-tool-inventory.ts", "prepublishOnly": "bun run typecheck && bun run lint && bun run test && bun run build", "typecheck": "tsc --noEmit", "test": "vitest run", "test:compat": "vitest run tests/transport-compatibility.test.ts", "test:watch": "vitest", "lint": "biome check .", "format": "biome format --write ." }, "dependencies": { "@modelcontextprotocol/sdk": "1.30.0", "gray-matter": "^4.0.3", "hono": "^4.12.14", "undici": "^6.21.0", "zod": "^4.3.6" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/node": "^24.9.0", "typescript": "^5.9.3", "vitest": "^3.2.4" } }