Skip to main content
Glama

ClickUp MCP Server - Enhanced

by Chykalophia
clickup-installer.js•2.94 kB
#!/usr/bin/env node import { readFileSync, writeFileSync, existsSync, mkdirSync } from 'fs'; import { homedir } from 'os'; import { join } from 'path'; import { createInterface } from 'readline'; const rl = createInterface({ input: process.stdin, output: process.stdout }); const question = (prompt) => new Promise(resolve => rl.question(prompt, resolve)); const VERSIONS = { '1': { name: 'Basic', command: 'clickup-mcp-server-basic', description: 'Essential tools (~150)' }, '2': { name: 'Enhanced', command: 'clickup-mcp-server-enhanced', description: 'Production ready (170+ tools) ⭐' }, '3': { name: 'Efficiency', command: 'clickup-mcp-server-efficiency', description: 'Smart shortcuts (170+ tools) šŸš€' }, '4': { name: 'AI-Powered', command: 'clickup-mcp-server-ai', description: 'Intelligent suggestions (170+ tools) 🧠' } }; function getConfigPath() { const platform = process.platform; if (platform === 'darwin') { return join(homedir(), 'Library/Application Support/Claude/claude_desktop_config.json'); } else if (platform === 'win32') { return join(process.env.APPDATA || '', 'Claude/claude_desktop_config.json'); } else { return join(homedir(), '.config/claude/claude_desktop_config.json'); } } async function main() { console.log('šŸš€ ClickUp MCP Server Installer\n'); // Version selection console.log('Available versions:'); Object.entries(VERSIONS).forEach(([key, version]) => { console.log(`${key}. ${version.name} - ${version.description}`); }); const versionChoice = await question('\nSelect version (1-4): '); const version = VERSIONS[versionChoice]; if (!version) { console.log('āŒ Invalid selection'); process.exit(1); } // API token input const apiToken = await question('\nEnter your ClickUp API token: '); if (!apiToken.trim()) { console.log('āŒ API token required'); process.exit(1); } // Config setup const configPath = getConfigPath(); const configDir = configPath.split('/').slice(0, -1).join('/'); if (!existsSync(configDir)) { mkdirSync(configDir, { recursive: true }); } let config = { mcpServers: {} }; if (existsSync(configPath)) { try { config = JSON.parse(readFileSync(configPath, 'utf8')); if (!config.mcpServers) config.mcpServers = {}; } catch (e) { console.log('āš ļø Invalid existing config, creating new one'); } } // Add ClickUp server config.mcpServers.clickup = { command: 'npx', args: ['-y', version.command], env: { CLICKUP_API_TOKEN: apiToken } }; // Write config writeFileSync(configPath, JSON.stringify(config, null, 2)); console.log(`\nāœ… Successfully installed ClickUp MCP Server (${version.name})`); console.log(`šŸ“ Config saved to: ${configPath}`); console.log('\nšŸ”„ Please restart Claude Desktop to activate the server'); rl.close(); } main().catch(console.error);

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Chykalophia/ClickUp-MCP-Server---Enhanced'

If you have feedback or need assistance with the MCP directory API, please join our Discord server