A collection of Model Context Protocol (MCP) servers that can be easily installed and used with AI assistants like Claude.
Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. These servers provide additional capabilities to AI models through a standardized interface.
Access and manage your ClickUp tasks directly from your AI assistant.
- Package:
@csevero/mcp-clickup
- Install:
npx @csevero/mcp-clickup
- Documentation: ./clickup/README.md
- Features:
- Retrieve tasks by Custom ID
- View task details (name, description, attachments)
- Portuguese language support
Each MCP server can be installed and run independently:
# Install and run ClickUp MCP Server
npx @csevero/mcp-clickup
This repository follows a monorepo structure where each MCP server is:
- Independent: Has its own package.json and can be published separately
- Clean Architecture: Follows domain-driven design principles
- TypeScript: Fully typed for better development experience
- Easy to Install: Available via npx for instant usage
mcp-servers/
βββ clickup/ # ClickUp MCP Server
β βββ src/
β β βββ domain/ # Business entities and interfaces
β β βββ use-cases/# Business logic
β β βββ infra/ # External integrations
β β βββ index.ts # Main entry point
β βββ package.json
β βββ README.md
βββ README.md # This file
We welcome contributions! Whether you want to:
- Add new MCP servers for different services
- Improve existing servers with new features
- Fix bugs or enhance documentation
- Suggest integrations for popular tools
- Fork this repository
- Create a new directory for your MCP server (e.g.,
./notion/
) - Follow the Clean Architecture pattern used in existing servers
- Add comprehensive README with installation and usage instructions
- Submit a Pull Request
When creating a new MCP server:
- Use Clean Architecture principles
- Include TypeScript types
- Add comprehensive error handling
- Provide clear documentation
- Follow the existing naming conventions
- Include usage examples
MIT License - see individual server directories for specific license information.
- Issues: Report bugs or request features via GitHub Issues
- Discussions: Join the conversation in GitHub Discussions
- MCP Documentation: Model Context Protocol Docs
Made with β€οΈ for the AI community