Skip to main content
Glama

Anytype MCP Server

by cryptonahue
build.js•903 B
#!/usr/bin/env node import { exec } from 'child_process'; import { promisify } from 'util'; const execAsync = promisify(exec); async function buildProject() { console.log('šŸ”Ø Building Anytype MCP Server...'); try { const { stdout, stderr } = await execAsync('npx tsc', { cwd: 'D:/repos/mcps/my-mcp-anytype' }); if (stderr && !stderr.includes('warning')) { console.error('āŒ Build failed:', stderr); process.exit(1); } if (stdout) { console.log('Build output:', stdout); } console.log('āœ… Build successful!'); console.log('\nYou can now run:'); console.log(' node test_fixes.js - Run the comprehensive test suite'); console.log(' node dist/index.js - Start the MCP server'); } catch (error) { console.error('āŒ Build failed:', error.message); process.exit(1); } } 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