feat(bin): bundle Obsidian MCP server into bin plugin
## Why The Obsidian MCP server config was living at the repo root, making it a repo-level concern rather than part of the plugin it belongs to. Moving it into plugins/bin/ means the plugin is self-contained and the server travels with it on install. ## Implementation Notes mcpServers is declared in the Copilot manifest (plugin.json) because Copilot requires explicit path declarations. CC auto-discovers .mcp.json from the plugin root so no change to the CC manifest is needed. Bumps version to 1.0.3 in both manifests. --- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -8,5 +8,5 @@
|
|||||||
"keywords": [],
|
"keywords": [],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"name": "bin",
|
"name": "bin",
|
||||||
"version": "1.0.2"
|
"version": "1.0.3"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"mcpServers": {
|
"mcpServers": {
|
||||||
"obsidian": {
|
"obsidian": {
|
||||||
"type": "stdio",
|
|
||||||
"command": "npx",
|
|
||||||
"args": [
|
"args": [
|
||||||
"@bitbonsai/mcpvault@latest",
|
"@bitbonsai/mcpvault@latest",
|
||||||
"docs/"
|
"docs/"
|
||||||
]
|
],
|
||||||
|
"command": "npx",
|
||||||
|
"type": "stdio"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -7,9 +7,10 @@
|
|||||||
"description": "A place for things to be binned",
|
"description": "A place for things to be binned",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"mcpServers": ".mcp.json",
|
||||||
"name": "bin",
|
"name": "bin",
|
||||||
"skills": [
|
"skills": [
|
||||||
"skills/"
|
"skills/"
|
||||||
],
|
],
|
||||||
"version": "1.0.2"
|
"version": "1.0.3"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user