# π LicenseSpring MCP Server v{{version}}
{{#if breaking}}
## β οΈ BREAKING CHANGES
{{#each breaking}}
- {{this}}
{{/each}}
{{/if}}
{{#if features}}
## π New Features
{{#each features}}
- {{this}}
{{/each}}
{{/if}}
{{#if fixes}}
## π Bug Fixes
{{#each fixes}}
- {{this}}
{{/each}}
{{/if}}
{{#if performance}}
## β‘ Performance Improvements
{{#each performance}}
- {{this}}
{{/each}}
{{/if}}
{{#if documentation}}
## π Documentation
{{#each documentation}}
- {{this}}
{{/each}}
{{/if}}
{{#if refactor}}
## β»οΈ Code Refactoring
{{#each refactor}}
- {{this}}
{{/each}}
{{/if}}
{{#if tests}}
## β
Tests
{{#each tests}}
- {{this}}
{{/each}}
{{/if}}
{{#if build}}
## π§ Build System
{{#each build}}
- {{this}}
{{/each}}
{{/if}}
{{#if ci}}
## π· CI/CD
{{#each ci}}
- {{this}}
{{/each}}
{{/if}}
## π¦ Installation
### NPM Package
```bash
npm install @tfedorko/licensespring-mcp-server@{{version}}
```
### Claude Desktop Configuration
```json
{
"mcpServers": {
"licensespring": {
"command": "npx",
"args": ["-y", "@tfedorko/licensespring-mcp-server@{{version}}"],
"env": {
"LICENSE_API_KEY": "YOUR_LICENSE_API_KEY",
"LICENSE_SHARED_KEY": "YOUR_SHARED_KEY_OR_LEAVE_EMPTY",
"MANAGEMENT_API_KEY": "YOUR_MANAGEMENT_API_KEY"
}
}
}
}
```
## π Links
- **π¦ NPM Package**: [@tfedorko/licensespring-mcp-server@{{version}}](https://www.npmjs.com/package/@tfedorko/licensespring-mcp-server/v/{{version}})
- **π Documentation**: [README.md](https://github.com/stier1ba/licensespring-mcp/blob/master/README.md)
- **π Issues**: [GitHub Issues](https://github.com/stier1ba/licensespring-mcp/issues)
- **π¬ Discussions**: [GitHub Discussions](https://github.com/stier1ba/licensespring-mcp/discussions)
## π§ͺ Testing
This release includes:
- β
**Unit Tests**: Jest test suite (100% pass rate)
- β
**Integration Tests**: Real LicenseSpring API validation (31/31 tests)
- β
**Build Verification**: TypeScript compilation and linting
- β
**CI/CD Pipeline**: GitHub Actions workflow validation
## π Upgrade Guide
### From Previous Versions
```bash
# Update to latest version
npm update @tfedorko/licensespring-mcp-server
# Or install specific version
npm install @tfedorko/licensespring-mcp-server@{{version}}
```
### Breaking Changes
{{#if breaking}}
{{#each breaking}}
- {{this}}
{{/each}}
{{else}}
No breaking changes in this release.
{{/if}}
---
**Full Changelog**: [{{previousTag}}...{{currentTag}}](https://github.com/stier1ba/licensespring-mcp/compare/{{previousTag}}...{{currentTag}})