Skip to main content
Glama

Software Planning MCP Server

by Jo-Lion
#!/usr/bin/env node const { spawn } = require('child_process'); // 启动Python服务器 console.log('Starting Python MCP server with STDIO transport...'); // 创建子进程运行Python服务器 const pythonProcess = spawn('python', ['server.py', '--transport', 'stdio'], { stdio: ['pipe', process.stdout, process.stderr] }); // 处理Python进程的输入/输出 process.stdin.pipe(pythonProcess.stdin); // 处理退出信号 process.on('SIGINT', () => { pythonProcess.kill('SIGINT'); }); process.on('SIGTERM', () => { pythonProcess.kill('SIGTERM'); }); // 处理Python进程退出 pythonProcess.on('exit', (code) => { console.log(`Python process exited with code ${code}`); process.exit(code); });

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/Jo-Lion/software-planning-mcp'

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