appmake-mcp-client
v1.0.13
Published
AppMake MCP Server Client for Claude Desktop - Mobile app development tools integration
Downloads
62
Maintainers
Readme
@appmake/mcp-client
AppMake MCP Server Client for Claude Desktop - Integrate mobile app development tools directly into Claude
🚀 Quick Start
One-line Installation & Setup
npx @appmake/mcp-client setup YOUR_API_KEYThis command will:
- Install the MCP client
- Configure Claude Desktop automatically
- Test the connection
- Show you how to use it
📦 Installation
Global Installation (Recommended)
npm install -g @appmake/mcp-clientLocal Installation
npm install @appmake/mcp-client⚙️ Configuration
Automatic Setup
After installation, run:
appmake-mcp-setupYou'll be prompted for your API key, and the setup will be completed automatically.
Manual Setup
Add the following to your Claude Desktop config file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"appmake": {
"command": "npx",
"args": ["appmake-mcp-client"],
"env": {
"APPMAKE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}환경 변수:
APPMAKE_API_KEY(필수): AppMake MCP API KeyMCP_SERVER_URL(선택): 서버 URL (기본값: https://mcp.appmake.co.kr)
🔑 Getting an API Key
- Visit AppMake
- Sign up or log in to your account
- Navigate to API settings
- Generate your MCP API key
🛠️ Available Tools
Once configured, Claude will have access to these AppMake tools:
App Management
CreateApp- Create a new mobile app projectGetAppList- List all your appsGetAppInfo- Get detailed app informationUpdateAppInfo- Update app configuration
File Management
UploadFile- Upload files to your appDownloadFile- Download app resourcesDeleteFile- Remove files from your app
Build & Deployment
BuildApp- Build your app for iOS/AndroidGetBuildStatus- Check build progressDeployApp- Deploy to app stores
Analytics & Monitoring
GetAppStats- View app statisticsGetUserAnalytics- User behavior analyticsGetCrashReports- Access crash reports
💡 Usage Examples
After setup, restart Claude Desktop and you can:
"Create a new mobile app called MyAwesomeApp"
"Show me all my apps"
"Build MyApp for Android"
"Upload this icon to MyApp"
"Check the build status of MyApp"🔧 Environment Variables
You can customize the behavior with these environment variables:
MCP_SERVER_URL- MCP server URL (default: https://mcp.appmake.co.kr)MCP_API_KEY- Your AppMake API keyDEBUG- Enable debug mode (true/false)TIMEOUT- Request timeout in ms (default: 30000)
📝 Troubleshooting
Claude Desktop doesn't recognize the MCP server
- Make sure Claude Desktop is completely closed
- Verify the config file is in the correct location
- Check that the API key is valid
- Restart Claude Desktop
Connection errors
# Test your connection
npx @appmake/mcp-client testDebug mode
Enable debug output by setting the DEBUG environment variable:
{
"mcpServers": {
"appmake": {
"command": "npx",
"args": ["@appmake/mcp-client"],
"env": {
"MCP_API_KEY": "YOUR_API_KEY",
"DEBUG": "true"
}
}
}
}🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
📄 License
MIT License - see LICENSE file for details.
🔗 Links
📞 Support
- Email: [email protected]
- Documentation: https://docs.appmake.co.kr
- Community Forum: https://community.appmake.co.kr
Made with ❤️ by AppMake Team
