{
  "name": "obsidian-mcp-server",
  "version": "1.5.0",
  "description": "Model Context Protocol (MCP) server designed for LLMs to interact with Obsidian vaults. Provides secure, token-aware tools for seamless knowledge base management through a standardized interface.",
  "main": "build/index.js",
  "type": "module",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc",
    "postbuild": "node -e \"if (process.platform !== 'win32') require('fs').chmodSync('build/index.js', '755')\"",
    "start": "node build/index.js",
    "dev": "tsc -w",
    "clean": "node -e \"require('fs').rmSync('build', { recursive: true, force: true })\"",
    "rebuild": "npm run clean && npm run build",
    "test": "echo \"No tests specified yet\" && exit 0",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\""
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.7.0",
    "axios": "^1.8.3",
    "dotenv": "^16.4.7",
    "tiktoken": "^1.0.20",
    "yaml": "^2.7.0",
    "zod": "^3.24.2",
    "winston": "^3.17.0",
    "@types/node": "^22.13.10",
    "@typescript-eslint/eslint-plugin": "^8.26.1",
    "@typescript-eslint/parser": "^8.26.1",
    "eslint": "^9.22.0",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-prettier": "^5.2.3",
    "prettier": "^3.5.3",
    "typescript": "^5.8.2"
  },
  "keywords": [
    "mcp",
    "obsidian",
    "llm",
    "llm-agent",
    "ai",
    "claude",
    "model-context-protocol",
    "tiktoken"
  ],
  "author": "cyanheads",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/cyanheads/obsidian-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/cyanheads/obsidian-mcp-server/issues"
  },
  "homepage": "https://github.com/cyanheads/obsidian-mcp-server#readme"
}
