Skip to main content
Glama

documcp

by tosin2013
analyze-repository.test.ts1.04 kB
describe('Tools Integration', () => { it('should have analyze-repository tool implementation', () => { const fs = require('fs'); const path = require('path'); const toolPath = path.join(__dirname, '../../src/tools/analyze-repository.ts'); expect(fs.existsSync(toolPath)).toBe(true); const content = fs.readFileSync(toolPath, 'utf8'); expect(content).toContain('export'); expect(content).toContain('analyzeRepository'); }); it('should have all MCP tools implemented', () => { const fs = require('fs'); const path = require('path'); const tools = [ 'analyze-repository.ts', 'recommend-ssg.ts', 'generate-config.ts', 'setup-structure.ts', 'deploy-pages.ts', 'verify-deployment.ts', ]; tools.forEach((tool) => { const toolPath = path.join(__dirname, '../../src/tools', tool); expect(fs.existsSync(toolPath)).toBe(true); const content = fs.readFileSync(toolPath, 'utf8'); expect(content).toContain('export'); }); }); });

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/tosin2013/documcp'

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