We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pouyanafisi/project-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•373 B
#!/usr/bin/env node
/**
* Entry point for the Project MCP Server.
*
* This MCP server provides tools for managing project documentation,
* task management with YAML frontmatter, and semantic search across
* multiple documentation sources.
*/
import { ProjectMCPServer } from './server.js';
const server = new ProjectMCPServer();
server.run().catch(console.error);