MCP Server
io.github.gogogadgetbytes/smart-connections MCP Server
io.github.gogogadgetbytes/smart-connections
What is the io.github.gogogadgetbytes/smart-connections MCP server?
MCP server for Obsidian Smart Connections. Semantic search using your vault's embeddings.
How to install io.github.gogogadgetbytes/smart-connections
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
VAULT_PATHrequiredAbsolute path to your Obsidian vault (e.g., /Users/you/Documents/MyVault)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"smart-connections": {
"command": "npx",
"args": [
"-y",
"@gogogadgetbytes/smart-connections-mcp"
],
"env": {
"VAULT_PATH": "<YOUR_VAULT_PATH>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"smart-connections": {
"command": "npx",
"args": [
"-y",
"@gogogadgetbytes/smart-connections-mcp"
],
"env": {
"VAULT_PATH": "<YOUR_VAULT_PATH>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"smart-connections": {
"command": "npx",
"args": [
"-y",
"@gogogadgetbytes/smart-connections-mcp"
],
"env": {
"VAULT_PATH": "<YOUR_VAULT_PATH>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"smart-connections": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@gogogadgetbytes/smart-connections-mcp"
],
"env": {
"VAULT_PATH": "<YOUR_VAULT_PATH>"
}
}
}
}Claude Code
claude mcp add smart-connections --env VAULT_PATH=<YOUR_VAULT_PATH> -- npx -y @gogogadgetbytes/smart-connections-mcpRelated MCP servers
MCP server for PLANKA kanban boards. Full CRUD for cards, tasks, comments, and labels.
View repository →