Skip to main content
Glama

Anytype MCP Server

by cryptonahue
quick_build.js•1.25 kB
#!/usr/bin/env node /** * Script para compilar y verificar que no hay errores de TypeScript */ import { spawn } from 'child_process'; function buildProject() { console.log('šŸ”Ø Building Anytype MCP Server...\n'); const tsc = spawn('npx', ['tsc'], { cwd: 'D:/repos/mcps/my-mcp-anytype', stdio: ['inherit', 'pipe', 'pipe'], shell: true }); let stdout = ''; let stderr = ''; tsc.stdout.on('data', (data) => { stdout += data; process.stdout.write(data); }); tsc.stderr.on('data', (data) => { stderr += data; process.stderr.write(data); }); tsc.on('close', (code) => { console.log('\n' + '='.repeat(50)); if (code === 0) { console.log('āœ… Build successful!'); console.log('\nšŸŽ‰ TypeScript compilation completed without errors.'); console.log('\nYou can now run:'); console.log(' node test_simple.js # Test the fixes'); console.log(' node dist/index.js # Start the MCP server'); } else { console.log('āŒ Build failed!'); console.log(`\nExit code: ${code}`); if (stderr) { console.log('\nErrors found:'); console.log(stderr); } } process.exit(code); }); } buildProject();

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/cryptonahue/mcp-anytype'

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