├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── images └── mcp-tools.png ├── index.ts ├── package.json ├── smithery.yaml └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/README.md -------------------------------------------------------------------------------- /images/mcp-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/images/mcp-tools.png -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/package.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/smithery.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithery-ai/mcp-obsidian/HEAD/tsconfig.json --------------------------------------------------------------------------------