Skip to main content
Glama

DexPaprika MCP Server

test.js789 B
#!/usr/bin/env node import { spawn } from 'child_process'; import path from 'path'; import { fileURLToPath } from 'url'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); async function main() { console.log('Starting DexPaprika MCP server test...'); // Start server process const serverProcess = spawn('node', [path.join(__dirname, 'index.js')], { stdio: 'inherit' }); // Wait for server to start await new Promise(resolve => setTimeout(resolve, 2000)); console.log('\nServer started successfully! Press Ctrl+C to exit.'); // Handle process exit process.on('SIGINT', () => { console.log('\nStopping server...'); if (serverProcess && !serverProcess.killed) { serverProcess.kill(); } process.exit(0); }); } main();

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/infinity-smithpl/dexpaprika-mcp'

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