Add Claude Code installation section to README
Quick-start instructions for Claude Code users with the `claude mcp add` command and manual config file option. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0e9efa89db
commit
67a38d3d32
1 changed files with 33 additions and 0 deletions
33
README.md
33
README.md
|
|
@ -58,6 +58,39 @@ npm run build
|
||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Claude Code Installation
|
||||||
|
|
||||||
|
The quickest way to get started with Claude Code:
|
||||||
|
|
||||||
|
**1. Start VICE with binary monitor:**
|
||||||
|
```bash
|
||||||
|
x64sc -binarymonitor -binarymonitoraddress ip4://127.0.0.1:6502
|
||||||
|
```
|
||||||
|
|
||||||
|
**2. Add the MCP server:**
|
||||||
|
```bash
|
||||||
|
claude mcp add vice-mcp -- npx github:simen/vice-mcp
|
||||||
|
```
|
||||||
|
|
||||||
|
**3. Restart Claude Code** to load the new MCP server.
|
||||||
|
|
||||||
|
That's it! You can now ask Claude Code to debug your C64 programs.
|
||||||
|
|
||||||
|
### Manual Configuration
|
||||||
|
|
||||||
|
Alternatively, add to `~/.claude/claude_desktop_config.json`:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"vice-mcp": {
|
||||||
|
"command": "npx",
|
||||||
|
"args": ["github:simen/vice-mcp"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Add to your MCP client configuration (e.g., Claude Desktop, Cursor, or custom agent):
|
Add to your MCP client configuration (e.g., Claude Desktop, Cursor, or custom agent):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue