Created
March 20, 2025 09:01
-
-
Save eladcandroid/74676c61fc4ae5ac0faf28149db45622 to your computer and use it in GitHub Desktop.
6.3.25-claude-with-superpowers-ROADMAP.md
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
## Getting Started | |
### Open the configuration file | |
```console | |
code ~/Library/Application\ Support/Claude/claude_desktop_config.json | |
``` | |
```console | |
code %APPDATA%\Claude\claude_desktop_config.json | |
``` | |
### Install uv | |
```console | |
brew install uv | |
``` | |
## Claude MCP | |
https://www.claudemcp.com/docs/quickstart | |
https://claude.ai/download | |
https://www.claudemcp.com/ | |
## MCP Portals | |
https://www.claudemcp.com/ | |
https://mcpserver.cloud/ | |
https://smithery.ai/ | |
## Fetch MCP Server | |
https://mcpserver.cloud/server/fetch-mcp-server | |
## Filesystem | |
https://smithery.ai/server/@smithery-ai/filesystem | |
## Desktop Commander | |
https://smithery.ai/server/@wonderwhy-er/desktop-commander | |
**Brave API** | |
https://brave.com/search/api/ | |
# Use cases | |
Fetch | |
``` | |
fetch weather in Jerusalem for the next 3 days | |
``` | |
Commander + Filesystem | |
``` | |
In the project: /Users/elad/dev/next/youtube4u | |
run "npm run build" and don't stop until you've fixed all the errors. | |
``` | |
## JSON | |
Fetch | |
```json | |
{ | |
"mcpServers": { | |
"fetch": { | |
"command": "uvx", | |
"args": ["mcp-server-fetch"] | |
} | |
} | |
} | |
``` | |
Commander with localhost | |
```json | |
{ | |
"mcpServers": { | |
"filesystem": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-filesystem", | |
"/Users/elad/dev" | |
] | |
}, | |
"@wonderwhy-er-desktop-commander": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@smithery/cli@latest", | |
"run", | |
"@wonderwhy-er/desktop-commander", | |
"--config", | |
"\"{}\"" | |
] | |
} | |
} | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment