We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vibeclasses/follow-plan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CONTRIBUTING.md•595 B
# Contributing to Follow Plan MCP
Thank you for your interest in contributing!
## Development Setup
1. Clone the repository
2. Install dependencies: `npm install`
3. Build the project: `npm run build`
4. Run tests: `npm test`
## Testing
Run the comprehensive test suite:
```bash
npm run test:coverage
```
## Pull Requests
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests for new functionality
5. Ensure all tests pass
6. Submit a pull request
## Code Style
We use ESLint and Prettier for code formatting:
```bash
npm run lint:fix
npm run format
```