Last active
January 19, 2025 18:16
-
-
Save delorenj/2c04d50b2fa86a377867ce203b28b1cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mcpServers": { | |
"obsidian": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"mcp-obsidian", | |
"/your/obsidian/vault/path" | |
] | |
}, | |
"aws-kb-retrieval": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-aws-kb-retrieval" | |
], | |
"env": { | |
"AWS_ACCESS_KEY_ID": "YOUR_AWS_ACCESS_KEY_ID", | |
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET_ACCESS_KEY", | |
"AWS_REGION": "us-east-2" | |
} | |
}, | |
"mcp-installer": { | |
"command": "npx", | |
"args": [ | |
"@anaisbetts/mcp-installer" | |
] | |
}, | |
"sequential-thinking": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-sequential-thinking" | |
] | |
}, | |
"memory": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-memory" | |
] | |
}, | |
"notion": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@suekou/mcp-notion-server" | |
], | |
"env": { | |
"NOTION_API_TOKEN": "YOUR_NOTION_API_TOKEN" | |
} | |
}, | |
"filesystem": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-filesystem", | |
"/Users/<username>" | |
] | |
}, | |
"github": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-github" | |
], | |
"env": { | |
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_PERSONAL_ACCESS_TOKEN" | |
} | |
}, | |
"brave-search": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-brave-search" | |
], | |
"env": { | |
"BRAVE_API_KEY": "YOUR_BRAVE_API_KEY" | |
} | |
}, | |
"mcp-server-ragdocs": { | |
"command": "npx", | |
"args": [ | |
"@qpd-v/mcp-server-ragdocs" | |
], | |
"env": { | |
"QDRANT_URL": "YOUR_QDRANT_URL", | |
"QDRANT_API_KEY": "YOUR_QDRANT_API_KEY", | |
"EMBEDDING_PROVIDER": "openai", | |
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment