mcp-tenant-credit-scorer
Version:
MCP server for tenant credit scoring based on S&P corporate methodology
43 lines (29 loc) • 1.03 kB
Markdown
# Contributing to MCP Tenant Credit Scorer
We welcome contributions to the MCP Tenant Credit Scorer project! This document provides guidelines for contributing.
## How to Contribute
### Reporting Issues
- Use the GitHub issue tracker to report bugs
- Describe the issue clearly with steps to reproduce
- Include relevant logs or error messages
### Submitting Pull Requests
1. Fork the repository
2. Create a feature branch (`git checkout -b feature/your-feature`)
3. Commit your changes (`git commit -am 'Add new feature'`)
4. Push to the branch (`git push origin feature/your-feature`)
5. Create a Pull Request
### Code Style
- Use ES modules syntax
- Follow existing naming conventions
- Add JSDoc comments for public APIs
- Ensure all tests pass
### Testing
Run tests before submitting:
```bash
npm test
```
## Development Setup
1. Clone the repository
2. Install dependencies: `npm install`
3. Run in development mode: `npm run dev`
## Questions?
Feel free to open an issue for any questions about contributing.