├── .clinerules ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── question.md ├── pull_request_template.md └── workflows │ └── release.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bun.lock ├── docs ├── features │ ├── mcp-server-install.md │ └── prompt-requirements.md ├── migration-plan.md └── project-architecture.md ├── manifest.json ├── mise.toml ├── package.json ├── packages ├── mcp-server │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── install.ts │ ├── src │ │ ├── features │ │ │ ├── core │ │ │ │ └── index.ts │ │ │ ├── fetch │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ └── services │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── markdown.test.ts │ │ │ │ │ └── markdown.ts │ │ │ ├── local-rest-api │ │ │ │ └── index.ts │ │ │ ├── prompts │ │ │ │ └── index.ts │ │ │ ├── smart-connections │ │ │ │ └── index.ts │ │ │ ├── templates │ │ │ │ └── index.ts │ │ │ └── version │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── shared │ │ │ ├── ToolRegistry.ts │ │ │ ├── formatMcpError.ts │ │ │ ├── formatString.ts │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ ├── makeRequest.ts │ │ │ ├── parseTemplateParameters.test.ts │ │ │ └── parseTemplateParameters.ts │ │ └── types │ │ │ └── global.d.ts │ └── tsconfig.json ├── obsidian-plugin │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── bun.config.ts │ ├── docs │ │ └── openapi.yaml │ ├── package.json │ ├── scripts │ │ ├── link.ts │ │ └── zip.ts │ ├── src │ │ ├── features │ │ │ ├── core │ │ │ │ ├── components │ │ │ │ │ └── SettingsTab.svelte │ │ │ │ └── index.ts │ │ │ └── mcp-server-install │ │ │ │ ├── components │ │ │ │ └── McpServerInstallSettings.svelte │ │ │ │ ├── constants │ │ │ │ ├── bundle-time.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── services │ │ │ │ ├── config.ts │ │ │ │ ├── install.ts │ │ │ │ ├── status.ts │ │ │ │ └── uninstall.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ ├── getFileSystemAdapter.ts │ │ │ │ └── openFolder.ts │ │ ├── main.ts │ │ ├── shared │ │ │ ├── index.ts │ │ │ └── logger.ts │ │ └── types.ts │ ├── svelte.config.js │ └── tsconfig.json ├── shared │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── logger.ts │ │ └── types │ │ │ ├── index.ts │ │ │ ├── plugin-local-rest-api.ts │ │ │ ├── plugin-smart-connections.ts │ │ │ ├── plugin-templater.ts │ │ │ ├── prompts.ts │ │ │ └── smart-search.ts │ └── tsconfig.json └── test-site │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ └── index.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ └── +page.svelte │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── patches └── svelte@5.16.0.patch ├── scripts └── version.ts └── versions.json /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.clinerules -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/bun.lock -------------------------------------------------------------------------------- /docs/features/mcp-server-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/docs/features/mcp-server-install.md -------------------------------------------------------------------------------- /docs/features/prompt-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/docs/features/prompt-requirements.md -------------------------------------------------------------------------------- /docs/migration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/docs/migration-plan.md -------------------------------------------------------------------------------- /docs/project-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/docs/project-architecture.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/manifest.json -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | bun = "latest" 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/package.json -------------------------------------------------------------------------------- /packages/mcp-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | *.log 4 | .env* 5 | playground/ -------------------------------------------------------------------------------- /packages/mcp-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/README.md -------------------------------------------------------------------------------- /packages/mcp-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/package.json -------------------------------------------------------------------------------- /packages/mcp-server/scripts/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/scripts/install.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/core/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/fetch/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/fetch/constants.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/fetch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/fetch/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/fetch/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./markdown"; 2 | -------------------------------------------------------------------------------- /packages/mcp-server/src/features/fetch/services/markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/fetch/services/markdown.test.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/fetch/services/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/fetch/services/markdown.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/local-rest-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/local-rest-api/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/prompts/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/smart-connections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/smart-connections/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/templates/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/features/version/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/features/version/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/ToolRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/ToolRegistry.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/formatMcpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/formatMcpError.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/formatString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/formatString.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/index.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/logger.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/makeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/makeRequest.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/parseTemplateParameters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/parseTemplateParameters.test.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/shared/parseTemplateParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/shared/parseTemplateParameters.ts -------------------------------------------------------------------------------- /packages/mcp-server/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/src/types/global.d.ts -------------------------------------------------------------------------------- /packages/mcp-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/mcp-server/tsconfig.json -------------------------------------------------------------------------------- /packages/obsidian-plugin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/.editorconfig -------------------------------------------------------------------------------- /packages/obsidian-plugin/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /packages/obsidian-plugin/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/.eslintrc -------------------------------------------------------------------------------- /packages/obsidian-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/.gitignore -------------------------------------------------------------------------------- /packages/obsidian-plugin/.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /packages/obsidian-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/README.md -------------------------------------------------------------------------------- /packages/obsidian-plugin/bun.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/bun.config.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/docs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/docs/openapi.yaml -------------------------------------------------------------------------------- /packages/obsidian-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/package.json -------------------------------------------------------------------------------- /packages/obsidian-plugin/scripts/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/scripts/link.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/scripts/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/scripts/zip.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/core/components/SettingsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/core/components/SettingsTab.svelte -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/core/index.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/components/McpServerInstallSettings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/components/McpServerInstallSettings.svelte -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/constants/bundle-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/constants/bundle-time.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/constants/index.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/index.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/services/config.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/services/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/services/install.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/services/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/services/status.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/services/uninstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/services/uninstall.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/types.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/utils/getFileSystemAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/utils/getFileSystemAdapter.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/features/mcp-server-install/utils/openFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/features/mcp-server-install/utils/openFolder.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/main.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/shared/index.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/shared/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/shared/logger.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/src/types.ts -------------------------------------------------------------------------------- /packages/obsidian-plugin/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/svelte.config.js -------------------------------------------------------------------------------- /packages/obsidian-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/obsidian-plugin/tsconfig.json -------------------------------------------------------------------------------- /packages/shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/.gitignore -------------------------------------------------------------------------------- /packages/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/README.md -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/package.json -------------------------------------------------------------------------------- /packages/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/index.ts -------------------------------------------------------------------------------- /packages/shared/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/logger.ts -------------------------------------------------------------------------------- /packages/shared/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/index.ts -------------------------------------------------------------------------------- /packages/shared/src/types/plugin-local-rest-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/plugin-local-rest-api.ts -------------------------------------------------------------------------------- /packages/shared/src/types/plugin-smart-connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/plugin-smart-connections.ts -------------------------------------------------------------------------------- /packages/shared/src/types/plugin-templater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/plugin-templater.ts -------------------------------------------------------------------------------- /packages/shared/src/types/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/prompts.ts -------------------------------------------------------------------------------- /packages/shared/src/types/smart-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/src/types/smart-search.ts -------------------------------------------------------------------------------- /packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /packages/test-site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/.gitignore -------------------------------------------------------------------------------- /packages/test-site/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /packages/test-site/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/.prettierignore -------------------------------------------------------------------------------- /packages/test-site/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/.prettierrc -------------------------------------------------------------------------------- /packages/test-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/README.md -------------------------------------------------------------------------------- /packages/test-site/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/eslint.config.js -------------------------------------------------------------------------------- /packages/test-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/package.json -------------------------------------------------------------------------------- /packages/test-site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/postcss.config.js -------------------------------------------------------------------------------- /packages/test-site/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/app.css -------------------------------------------------------------------------------- /packages/test-site/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/app.d.ts -------------------------------------------------------------------------------- /packages/test-site/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/app.html -------------------------------------------------------------------------------- /packages/test-site/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/lib/index.ts -------------------------------------------------------------------------------- /packages/test-site/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/routes/+layout.svelte -------------------------------------------------------------------------------- /packages/test-site/src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /packages/test-site/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/src/routes/+page.svelte -------------------------------------------------------------------------------- /packages/test-site/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/static/favicon.png -------------------------------------------------------------------------------- /packages/test-site/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/svelte.config.js -------------------------------------------------------------------------------- /packages/test-site/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/tailwind.config.ts -------------------------------------------------------------------------------- /packages/test-site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/tsconfig.json -------------------------------------------------------------------------------- /packages/test-site/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/packages/test-site/vite.config.ts -------------------------------------------------------------------------------- /patches/svelte@5.16.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/patches/svelte@5.16.0.patch -------------------------------------------------------------------------------- /scripts/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/scripts/version.ts -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksteamdev/obsidian-mcp-tools/HEAD/versions.json --------------------------------------------------------------------------------