
LicenseSpring MCP Server
An MCP server implementation that integrates with LicenseSpring APIs, providing comprehensive license management and customer operations capabilities.
Tools
activate_license
Activate a license with hardware ID and product code
check_license
Check license status and validity
deactivate_license
Deactivate a license for a specific hardware ID
add_consumption
Add consumption units to a license
add_feature_consumption
Add consumption units to a specific feature
get_product_details
Get detailed information about a product
track_device_variables
Track custom variables for a device
get_device_variables
Get tracked variables for a device
floating_release
Release a floating license
floating_borrow
Borrow a floating license for offline use
get_trial_key
Generate a trial license key for a product
activate_offline
Activate a license for offline use with hardware ID and product code
change_password
Change password for a user-based license
get_versions
Get available software versions for a product
get_installation_file
Get installation file download information
get_sso_url
Get Single Sign-On URL for customer portal access
get_customer_license_users
Get customer license users for a specific license
deactivate_offline
Deactivate a license for offline use with hardware ID and product code
README
LicenseSpring MCP Server
An MCP server implementation that integrates with LicenseSpring APIs, providing comprehensive license management and customer operations capabilities.
Features
- License Operations: Activate, check, deactivate licenses with hardware binding
- Customer Management: Create, list, and manage customers
- Usage Tracking: Monitor license consumption and feature usage
- Trial Management: Generate and manage trial licenses
- Floating Licenses: Handle floating license operations
- Subscription Tier Support: Works with all LicenseSpring subscription tiers
Tools
License API Tools
- activate_license - Activate a license with hardware ID binding
- check_license - Check license status and validity
- deactivate_license - Deactivate a license for specific hardware
- add_consumption - Add consumption units to a license
- get_trial_key - Generate trial license keys
- get_product_details - Retrieve product information
- floating_release - Release floating licenses
- floating_borrow - Borrow floating licenses for offline use
- change_password - Change user passwords for user-based licenses
- get_versions - Get available software versions
- get_installation_file - Get installation file information
- get_sso_url - Generate Single Sign-On URLs
Management API Tools
- list_licenses - List licenses with optional filtering
- create_license - Create new licenses
- update_license - Update existing licenses
- get_license - Get detailed license information
- delete_license - Delete licenses
- list_customers - List customers with filtering options
- create_customer - Create new customers
Configuration
Getting API Credentials
- License API: Log into your LicenseSpring dashboard → Settings → Keys
- Management API: Same location, copy your Management API Key
- Shared Key: Available for Premium/Enterprise subscription tiers only
Usage with Claude Desktop
Add this to your claude_desktop_config.json
:
License API Server
{
"mcpServers": {
"licensespring": {
"command": "npx",
"args": [
"-y",
"@tfedorko/licensespring-mcp-server",
"license-api"
],
"env": {
"LICENSE_API_KEY": "YOUR_LICENSE_API_KEY",
"LICENSE_SHARED_KEY": "YOUR_SHARED_KEY_OR_LEAVE_EMPTY"
}
}
}
}
Management API Server
{
"mcpServers": {
"licensespring-management": {
"command": "npx",
"args": [
"-y",
"@tfedorko/licensespring-mcp-server",
"management-api"
],
"env": {
"MANAGEMENT_API_KEY": "YOUR_MANAGEMENT_API_KEY"
}
}
}
}
Docker
{
"mcpServers": {
"licensespring": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"LICENSE_API_KEY",
"-e",
"LICENSE_SHARED_KEY",
"stiertfedorko/licensespring-mcp:latest"
],
"env": {
"LICENSE_API_KEY": "YOUR_LICENSE_API_KEY",
"LICENSE_SHARED_KEY": "YOUR_SHARED_KEY_OR_LEAVE_EMPTY"
}
},
"licensespring-management": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"MANAGEMENT_API_KEY",
"stiertfedorko/licensespring-mcp-management:latest"
],
"env": {
"MANAGEMENT_API_KEY": "YOUR_MANAGEMENT_API_KEY"
}
}
}
}
Subscription Tier Support
The server automatically adapts to your LicenseSpring subscription tier:
- Premium/Enterprise: Full functionality with HMAC authentication
- Basic/Standard: Limited mode with helpful upgrade guidance
- Development: Test mode for safe development
Note:
LICENSE_SHARED_KEY
is optional. The server will start regardless of your subscription tier and provide appropriate guidance for API limitations.
Usage with VS Code
For quick installation, use the one-click installation buttons below:
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code:
NPX
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "license_api_key",
"description": "LicenseSpring License API Key",
"password": true
},
{
"type": "promptString",
"id": "license_shared_key",
"description": "LicenseSpring Shared Key (optional for Basic/Standard tiers)",
"password": true
}
],
"servers": {
"licensespring": {
"command": "npx",
"args": ["-y", "@tfedorko/licensespring-mcp-server", "license-api"],
"env": {
"LICENSE_API_KEY": "${input:license_api_key}",
"LICENSE_SHARED_KEY": "${input:license_shared_key}"
}
}
}
}
}
Troubleshooting
Common Issues
Error: "npm error could not determine executable to run"
- Solution: Update to version 1.0.1 or later:
npx @tfedorko/licensespring-mcp-server@latest
- Cause: Fixed in v1.0.1 - improved binary configuration and startup process
Error: "MCP error -1: Connection closed"
- Solution: Update to version 1.0.2 or later:
npx @tfedorko/licensespring-mcp-server@latest
- Cause: Fixed in v1.0.2 - server now defaults to license-api mode for Claude Desktop compatibility
Error: "LICENSE_API_KEY is required"
- Solution: Set your environment variables in
.env
file or Claude Desktop config - Check: Copy
.env.example
to.env
and fill in your API credentials
Error: "Authentication failed"
- Solution: Verify your API keys in the LicenseSpring dashboard
- Note:
LICENSE_SHARED_KEY
is optional for Basic/Standard subscription tiers
Server starts but API calls fail
- Check: Your LicenseSpring subscription tier and available API features
- Solution: The server provides helpful guidance for subscription limitations
Getting Help
- Check the error messages - they provide specific guidance
- Verify your LicenseSpring subscription tier and API access
- Review the Advanced Documentation below
- Open an issue on GitHub with error details
Release Automation
This project includes comprehensive automated release versioning and NPM distribution:
Quick Release Commands
npm run release # Patch release (1.0.0 -> 1.0.1)
npm run release:minor # Minor release (1.0.0 -> 1.1.0)
npm run release:major # Major release (1.0.0 -> 2.0.0)
Preview Changes
npm run version:dry # Preview version bump
npm run publish:dry # Preview NPM publish
Automated GitHub Releases
- Commit triggers: Use
[release]
in commit messages - Manual dispatch: GitHub Actions workflow
- Semantic release: Conventional commit messages
For complete automation documentation, see Release Automation Guide.
Advanced Documentation
For comprehensive guides and advanced configuration:
- Release Automation Guide - Complete automated release and distribution system
- Subscription Tier Support - Detailed guide for different LicenseSpring subscription tiers
- Distribution Guide - Complete setup and sharing instructions
- Test Report - Comprehensive testing results and validation
- Migration Guide - Technical implementation details
Installation
NPM Package
npm install -g @tfedorko/licensespring-mcp-server
Note: Requires Node.js 20.x or higher for optimal compatibility.
Docker Images
# License API Server
docker pull stiertfedorko/licensespring-mcp:latest
# Management API Server
docker pull stiertfedorko/licensespring-mcp-management:latest
Build
Docker build:
docker build -t licensespring-mcp:latest -f Dockerfile .
docker build -t licensespring-mcp-management:latest -f Dockerfile.management .
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。