Thunder Client License Manager MCP Server
Provides tools for managing Thunder Client licenses through their API, enabling users to add, retrieve, and remove licenses with simple commands.
Tools
thunderclient_add_license
Add Thunder Client licenses for specified email addresses
thunderclient_get_licenses
Get Thunder Client licenses. If pageNumber is not provided, fetches all pages automatically.
thunderclient_remove_license
Remove Thunder Client licenses for specified email addresses
README
Thunder Client License Manager MCP Server
An MCP (Model Context Protocol) server that provides tools for managing Thunder Client licenses through their API.
Features
- Add licenses: Add Thunder Client licenses for specified email addresses
- Get licenses: Retrieve license information with automatic pagination
- Remove licenses: Remove Thunder Client licenses for specified email addresses
Requirements
- Node.js 20+ (LTS)
- TypeScript
- Thunder Client API access
Installation
- Clone this repository
- Install dependencies:
npm install - Build the project:
npm run build
Environment Variables
Before using the MCP server, you need to set the following environment variables:
TC_API_KEY: Your Thunder Client API key (sent as 'api-key' header)TC_ACCOUNT_NUMBER: Your Thunder Client account numberTC_BASE_URL: (Optional) Base URL for Thunder Client API (defaults to 'https://www.thunderclient.com')
Example Environment Setup
export TC_API_KEY="your-api-key-here"
export TC_ACCOUNT_NUMBER="your-account-number"
export TC_BASE_URL="https://www.thunderclient.com" # optional
MCP Configuration
Add the server to your MCP settings configuration:
For Cline/Claude Desktop
Add to your cline_mcp_settings.json or Claude Desktop configuration:
{
"mcpServers": {
"thunderclient-license-manager": {
"command": "npx",
"args": ["-y", "/path/to/thunderclient-license-manager-mcp"],
"env": {
"TC_API_KEY": "your-api-key-here",
"TC_ACCOUNT_NUMBER": "your-account-number-here"
}
}
}
}
For other MCP clients
Use the stdio transport with npx:
npx -y .
Available Tools
1. thunderclient_add_license
Add Thunder Client licenses for specified email addresses.
Parameters:
emails(required): Array of email addresses to add licenses for
Example:
{
"emails": ["user1@example.com", "user2@example.com"]
}
2. thunderclient_get_licenses
Get Thunder Client licenses with smart pagination.
Parameters:
pageNumber(optional): Specific page to fetch. If omitted, fetches ALL pages automatically
Example - Get all licenses:
{}
Example - Get specific page:
{
"pageNumber": 2
}
3. thunderclient_remove_license
Remove Thunder Client licenses for specified email addresses.
Parameters:
emails(required): Array of email addresses to remove licenses for
Example:
{
"emails": ["user1@example.com", "user2@example.com"]
}
API Response Format
All tools return responses in the following format:
{
"success": true/false,
"data": { /* API response data */ },
"message": "Success/error message",
"error": "Error details (if success is false)"
}
Special Response for thunderclient_get_licenses without pageNumber
When fetching all pages, the response includes:
{
"success": true,
"data": {
"licenses": [ /* Combined licenses from all pages */ ],
"totalPages": 5,
"totalCount": 150,
"pagesFetched": 5
},
"message": "Retrieved 150 licenses across 5 page(s)"
}
Development
Scripts
npm run build: Compile TypeScript to JavaScriptnpm run dev: Watch mode for developmentnpm start: Run the compiled server
Project Structure
src/
├── index.ts # Main MCP server implementation
├── api-client.ts # Thunder Client API wrapper
└── types.ts # TypeScript type definitions
Error Handling
The server includes comprehensive error handling:
- Environment variable validation
- API request/response error handling
- Input validation for required parameters
- Proper MCP error codes and messages
License
MIT
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
Support
For issues related to the Thunder Client API, refer to their documentation. For MCP server issues, please create an issue in this repository.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.