Skip to main content
Glama

AutoDev Codebase MCP Server

by anrgct
test-scanner.tsโ€ข817 B
#!/usr/bin/env node /** * Test script to check if the scanner functionality works */ import path from 'path' async function main() { console.log('๐Ÿงช Testing p-limit import...') try { const { default: pLimit } = await import('p-limit') console.log('โœ… p-limit import successful') const limiter = pLimit(2) const tasks = [ limiter(() => Promise.resolve('task 1')), limiter(() => Promise.resolve('task 2')), limiter(() => Promise.resolve('task 3')) ] const results = await Promise.all(tasks) console.log('โœ… p-limit functionality works:', results) } catch (error) { console.error('โŒ p-limit test failed:', error) } } // Run the test if (require.main === module) { main().catch(console.error) } export { main as testScanner }

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/anrgct/autodev-codebase'

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