Last active
January 23, 2025 23:00
-
-
Save delorenj/4e665def18f8483bdff043166a44710a 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": { | |
"mcp-installer": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @anaisbetts/mcp-installer"] | |
}, | |
"sequential-thinking": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx @modelcontextprotocol/server-sequential-thinking"] | |
}, | |
"filesystem": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @modelcontextprotocol/server-filesystem /Users/jaraddelorenzo"], | |
"alwaysAllow": [ | |
"read_file", | |
"read_multiple_files", | |
"create_directory", | |
"list_directory", | |
"search_files", | |
"get_file_info", | |
"list_allowed_directories" | |
] | |
}, | |
"brave-search": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @modelcontextprotocol/server-brave-search"], | |
"env": { | |
"BRAVE_API_KEY": "BSA_QV3LiLfkzOYb5lAzc5rZuUTHt4Y" | |
}, | |
"alwaysAllow": ["brave_web_search", "brave_local_search"] | |
}, | |
"github": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @modelcontextprotocol/server-github"], | |
"env": { | |
"GITHUB_PERSONAL_ACCESS_TOKEN": "$GITHUB_PERSONAL_ACCESS_TOKEN" | |
}, | |
"alwaysAllow": [ | |
"create_or_update_file", | |
"search_repositories", | |
"create_repository", | |
"get_file_contents", | |
"push_files", | |
"create_issue", | |
"create_pull_request", | |
"fork_repository", | |
"create_branch" | |
] | |
}, | |
"memory": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @modelcontextprotocol/server-memory"], | |
"alwaysAllow": [ | |
"create_entities", | |
"create_relations", | |
"add_observations", | |
"delete_entities", | |
"delete_observations", | |
"delete_relations", | |
"read_graph", | |
"search_nodes", | |
"open_nodes" | |
] | |
}, | |
"notion": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx -y @suekou/mcp-notion-server"], | |
"env": { | |
"NOTION_API_TOKEN": "secret_V0WFMPHqbPYycRe1ljdewXWHtu0oUheRGqpRsCj8DOR" | |
}, | |
"disabled": false, | |
"alwaysAllow": [] | |
}, | |
"ragdocs": { | |
"command": "/bin/zsh", | |
"args": ["-c", "mise x -- npx @qpd-v/mcp-server-ragdocs"], | |
"env": { | |
"QDRANT_URL": "http://localhost:6333", | |
"EMBEDDING_PROVIDER": "openai", | |
"OPENAI_API_KEY": "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" | |
}, | |
"alwaysAllow": [ | |
"add_documentation", | |
"search_documentation", | |
"list_sources" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment