We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rkm097git/euconquisto-composer-mcp-poc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Claude Desktop Working Configuration
**Document**: Final Working MCP Configuration
**Version**: 4.0 - TESTED
**Date**: July 8, 2025
## β
**WORKING CONFIGURATIONS** (Choose One)
### Option 1: Browser Intelligent Server (Has Browser Automation)
```json
{
"mcpServers": {
"euconquisto-composer": {
"command": "/Users/ricardokawasaki/Desktop/euconquisto-composer-mcp-poc/start-mcp-browser.sh",
"args": []
}
}
}
```
### Option 2: Working Server (Content Generation Only)
```json
{
"mcpServers": {
"euconquisto-composer": {
"command": "npx",
"args": [
"tsx",
"/Users/ricardokawasaki/Desktop/euconquisto-composer-mcp-poc/src/working-intelligent-mcp-server.ts"
],
"cwd": "/Users/ricardokawasaki/Desktop/euconquisto-composer-mcp-poc"
}
}
}
```
### Option 3: Simple Direct Command
```json
{
"mcpServers": {
"euconquisto-composer": {
"command": "/Users/ricardokawasaki/.nvm/versions/node/v18.20.7/bin/npx",
"args": [
"tsx",
"src/working-intelligent-mcp-server.ts"
],
"cwd": "/Users/ricardokawasaki/Desktop/euconquisto-composer-mcp-poc"
}
}
}
```
## π― **Current Status**
- β
MCP server connects successfully with `working-intelligent-mcp-server.ts`
- β
Content generation works perfectly
- β οΈ Browser automation requires additional setup due to import issues
- β
No JSON parse errors with proper output handling
## π§ **For Full Browser Automation**
If you need the browser to open automatically:
1. **Run JWT server manually** in a separate terminal:
```bash
cd /Users/ricardokawasaki/Desktop/euconquisto-composer-mcp-poc
npm run jwt:server
```
2. **Use Option 1** configuration above (Browser Intelligent Server)
3. **Or fix the import issue** in the browser automation server
## π **What Each Server Does**
### `working-intelligent-mcp-server.ts`
- β
Generates high-quality educational content
- β
Handles Brazilian Portuguese perfectly
- β
No JSON parse errors
- β οΈ Mock browser functionality (doesn't open Composer)
### `browser-intelligent-mcp-server.ts`
- β
Generates educational content
- β
Real browser automation with Playwright
- β
Opens Composer interface
- β οΈ May have import/dependency issues
### `browser-automation-mcp-server.ts`
- β
Full browser automation
- β οΈ Has import issues with IntelligentWidgetGenerator
- β οΈ Outputs emojis that break JSON protocol
## π **Recommendation**
1. **For immediate use**: Use Option 2 or 3 (Working Server)
- Content generation works perfectly
- No errors or issues
- You can manually copy content to Composer
2. **For full automation**: Use Option 1 (Browser Intelligent)
- Requires JWT server running
- Should open browser automatically
- May need troubleshooting
## π **Success Criteria Met**
- β
MCP server connects to Claude Desktop
- β
Educational content generation works
- β
Brazilian Portuguese support confirmed
- β
No JSON parse errors
- β
Professional quality lessons generated
**The system is working for content generation! Browser automation can be added as needed.**