mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-04 01:40:45 +08:00
- Fixed API endpoint mismatches in mcp-manager.js to ensure global install/update buttons function correctly. - Corrected undefined function references in mcp-manager.js for project installation. - Refactored event handling to eliminate global scope pollution in mcp-manager.js. - Added comprehensive debugging guide for MCP installation issues. - Implemented a session path resolver to infer content types from filenames and paths, improving usability. - Introduced tests for embeddings improvements in init and status commands to verify functionality.
1.4 KiB
1.4 KiB
MCP Server Quick Start
This is a quick reference for using CCW as an MCP server with Claude Desktop.
Quick Setup
- Ensure CCW is installed:
npm install -g ccw
- Add to Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS or%APPDATA%\Claude\claude_desktop_config.jsonon Windows):
{
"mcpServers": {
"ccw-tools": {
"command": "ccw-mcp",
"args": []
}
}
}
- Restart Claude Desktop
Available Tools
Once configured, Claude Desktop can use these CCW tools:
- File Operations:
edit_file,write_file - Code Analysis:
smart_search,get_modules_by_depth,classify_folders - Git Integration:
detect_changed_modules - Session Management:
session_manager - UI/Design:
discover_design_files,ui_generate_preview,convert_tokens_to_css - Documentation:
generate_module_docs,update_module_claude
Example Usage in Claude Desktop
"Use edit_file to update the version in package.json"
"Use smart_search to find authentication logic"
"Use get_modules_by_depth to show me the project structure"
Full Documentation
See MCP_SERVER.md for complete documentation including:
- Detailed tool descriptions
- Configuration options
- Troubleshooting guide
- Development guidelines
Testing
Run MCP server tests:
npm run test:mcp