appmake-mcp-client
Version:
AppMake MCP Server Client for Claude Desktop - Mobile app development tools integration
48 lines (40 loc) β’ 1.73 kB
JavaScript
const os = require('os');
const path = require('path');
console.log('\nπ AppMake MCP Client μ€μΉ μλ£!\n');
console.log('βββββββββββββββββββββββββββββββββββββββββ');
console.log('\nλΉ λ₯Έ μ€μ (κΆμ₯):');
console.log(' npx appmake-mcp-client setup YOUR_API_KEY\n');
console.log('βββββββββββββββββββββββββββββββββββββββββ');
console.log('\nμλ μ€μ :');
// νλ«νΌλ³ μ€μ νμΌ κ²½λ‘
const platform = os.platform();
let configPath;
if (platform === 'win32') {
configPath = path.join('%APPDATA%', 'Claude', 'claude_desktop_config.json');
} else if (platform === 'darwin') {
configPath = '~/Library/Application Support/Claude/claude_desktop_config.json';
} else {
configPath = '~/.config/Claude/claude_desktop_config.json';
}
console.log('1. Claude Desktop μ€μ νμΌ μ΄κΈ°:');
console.log(' ', configPath);
console.log('\n2. λ€μ λ΄μ© μΆκ°:');
const exampleConfig = {
mcpServers: {
'appmake-mcp': {
command: 'npx',
args: ['appmake-mcp-client'],
env: {
MCP_SERVER_URL: 'https://mcp.appmake.co.kr',
MCP_API_KEY: 'YOUR_API_KEY_HERE'
}
}
}
};
console.log(JSON.stringify(exampleConfig, null, 2));
console.log('\nβββββββββββββββββββββββββββββββββββββββββ');
console.log('\nπ μμΈν μ 보:');
console.log(' λ¬Έμ: https://github.com/appmake/mcp-client');
console.log(' API ν€ λ°κΈ: https://www.appmake.co.kr');
console.log(' μ§μ: support@appmake.co.kr\n');