We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jordan-huffman/airtable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pull_request_template.md•3.56 kB
## Description
<!-- Provide a clear and concise description of your changes -->
## Related Issues
<!-- Link to related issues using "Fixes #123" or "Closes #456" -->
Fixes #
## Type of Change
<!-- Mark the relevant option(s) with an "x" -->
- [ ] Bug fix (non-breaking change that fixes an issue)
- [ ] New feature (non-breaking change that adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring
- [ ] Security fix
- [ ] Dependency update
- [ ] Other (please describe):
## Changes Made
<!-- List the specific changes you've made -->
-
-
-
## Testing
### Test Coverage
- [ ] New tests added for new functionality
- [ ] Existing tests updated for changes
- [ ] All tests pass locally (`npm test`)
- [ ] Test coverage maintained or improved
### Testing Performed
<!-- Describe the testing you performed -->
- [ ] Unit tests
- [ ] Integration tests with Airtable
- [ ] Manual testing in Claude Desktop
- [ ] Tested with development scripts in `scripts/`
**Test details:**
<!-- Describe specific test scenarios -->
## Security Considerations
<!-- Answer these security questions -->
- [ ] No sensitive data (credentials, tokens) added to code
- [ ] Input validation added/updated for new parameters
- [ ] Error messages don't expose sensitive information
- [ ] Formula injection prevention considered (if applicable)
- [ ] DoS protection considered (if applicable)
- [ ] Dependencies checked for vulnerabilities (`npm audit`)
**Security notes:**
<!-- Add any security-related notes or concerns -->
## Documentation
- [ ] README.md updated (if applicable)
- [ ] CHANGELOG.md updated under "Unreleased" section
- [ ] EXAMPLES.md updated with usage examples (if applicable)
- [ ] JSDoc comments added for new functions
- [ ] Type definitions updated (if applicable)
## Code Quality
- [ ] Code follows the project's style guidelines
- [ ] TypeScript types properly defined (no `any` types unless necessary)
- [ ] No TypeScript errors (`npm run build`)
- [ ] Commit messages follow conventional commits format
- [ ] Code is self-documenting or has appropriate comments
## Breaking Changes
<!-- If this is a breaking change, describe the impact and migration path -->
**Impact:**
**Migration guide:**
## Screenshots (if applicable)
<!-- Add screenshots showing the changes in action -->
## Additional Notes
<!-- Any other information that reviewers should know -->
## Pre-submission Checklist
<!-- Ensure all items are checked before submitting -->
- [ ] I have read the [CONTRIBUTING.md](../CONTRIBUTING.md) guidelines
- [ ] My code follows the project's code style
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published
- [ ] I have updated the CHANGELOG.md file
- [ ] I have checked for and removed any debugging code or console logs
## Review Checklist (for maintainers)
- [ ] Code quality and style
- [ ] Test coverage adequate
- [ ] Documentation complete
- [ ] Security considerations addressed
- [ ] No breaking changes (or properly documented)
- [ ] CHANGELOG.md updated
- [ ] Performance impact acceptable