mcp-server-thingpark
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-thingparkList all my LoRaWAN devices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server for Actility ThingPark
A Model Context Protocol (MCP) server that connects AI assistants to the Actility ThingPark LoRaWAN network server. Manage devices and send downlink commands through natural language.
Works with ThingPark Community, ThingPark Enterprise, and other deployments that expose the DX Core API.
Tools
Tool | Description |
| List all registered LoRaWAN devices with DevEUI, class, and profile |
| Get detailed device information by DevEUI |
| Send a raw hex downlink payload to any device |
| View pending downlink messages for a device |
| Clear cached OAuth token (troubleshooting) |
These tools work with any LoRaWAN device on your ThingPark account.
Related MCP server: now-sdk-ext-mcp
Sensor Helpers
The server auto-loads sensor-specific helper modules from sensors/. These provide high-level tools for configuring specific sensors without needing to know the raw hex payload format.
See sensors/SUPPORTED.md for the list of supported sensors and how to add your own.
Sensor | Manufacturer | Tools |
Dragino | Transmit interval, vibration mode, sensitivity, alarm |
Installation
Using uv (recommended)
When using uv no specific installation is needed. Use uvx to directly run the server:
uvx mcp-server-thingparkUsing pip
pip install mcp-server-thingparkAfter installation, run it as:
mcp-server-thingparkFrom source
git clone https://github.com/bbruhn91/mcp-server-thingpark.git
cd mcp-server-thingpark
python -m venv .venv
source .venv/bin/activate
pip install -e .Configuration
The server requires three environment variables for ThingPark API authentication:
Variable | Description | Example |
| ThingPark platform base URL |
|
| API client ID |
|
| API client secret |
|
Getting API Credentials
Log in to your ThingPark platform (e.g. community.thingpark.io)
Go to your account settings
Create an API client with
client_credentialsgrant typeNote the client ID (
sub-XXXXXXXXX/username) and client secret
Usage with Claude Desktop
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"thingpark": {
"command": "uvx",
"args": ["mcp-server-thingpark"],
"env": {
"THINGPARK_URL": "https://community.thingpark.io/thingpark",
"THINGPARK_CLIENT_ID": "sub-XXXXXXXXX/your-username",
"THINGPARK_CLIENT_SECRET": "your-client-secret"
}
}
}
}{
"mcpServers": {
"thingpark": {
"command": "uvx",
"args": ["mcp-server-thingpark"],
"env": {
"THINGPARK_URL": "https://community.thingpark.io/thingpark",
"THINGPARK_CLIENT_ID": "sub-XXXXXXXXX/your-username",
"THINGPARK_CLIENT_SECRET": "your-client-secret"
}
}
}
}Usage with Claude Code
Add to ~/.claude/.mcp.json:
{
"mcpServers": {
"thingpark": {
"command": "uvx",
"args": ["mcp-server-thingpark"],
"env": {
"THINGPARK_URL": "https://community.thingpark.io/thingpark",
"THINGPARK_CLIENT_ID": "sub-XXXXXXXXX/your-username",
"THINGPARK_CLIENT_SECRET": "your-client-secret"
}
}
}
}Usage with VS Code
Install the MCP extension and add to your VS Code settings or .vscode/mcp.json:
{
"mcp": {
"servers": {
"thingpark": {
"command": "uvx",
"args": ["mcp-server-thingpark"],
"env": {
"THINGPARK_URL": "https://community.thingpark.io/thingpark",
"THINGPARK_CLIENT_ID": "sub-XXXXXXXXX/your-username",
"THINGPARK_CLIENT_SECRET": "your-client-secret"
}
}
}
}
}Examples
> List all my LoRaWAN devices
> Show me details for device A84041F21867E433
> Send downlink 0100003C to device A84041F21867E433 on FPort 2
> Set the transmit interval to 60 seconds on my vibration sensorAdding Support for a New Sensor
Create
src/mcp_server_thingpark/sensors/<sensor_name>.pywith aregister(mcp, send_downlink)function:
def register(mcp, send_downlink):
@mcp.tool()
def my_sensor_set_interval(dev_eui: str, seconds: int) -> str:
"""Set transmit interval for MySensor."""
payload = f"01{seconds:06X}"
return send_downlink(dev_eui, payload, fport=2)Create
src/mcp_server_thingpark/sensors/<sensor_name>.mdwith the downlink command referenceAdd a row to
src/mcp_server_thingpark/sensors/SUPPORTED.mdSubmit a PR
The module is auto-discovered on startup — no need to edit server.py.
Debugging
You can use the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector uvx mcp-server-thingparkIncrease logging verbosity with the -v flag:
mcp-server-thingpark -v # INFO level
mcp-server-thingpark -vv # DEBUG levelTechnical Notes
DevEUI vs ref
The ThingPark DX Core API uses an internal ref identifier in URL paths, not the DevEUI. This server maps DevEUI to ref automatically — you always use DevEUIs.
Authentication
OAuth2 client credentials flow against the ThingPark Keycloak OIDC endpoint. Tokens are cached and refreshed automatically.
License
This project is licensed under the MIT License — see the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceMCP server for the AIRIOT IoT platform, enabling AI assistants to manage data tables, records, devices, alarms, files, and more through natural language.Last updated60131MIT
- AlicenseAqualityAmaintenanceAn MCP server that enables AI assistants to interact with ServiceNow instances, allowing script execution, data querying, ATF tests, and log tailing through natural language commands.Last updated8738113MIT
- Alicense-qualityCmaintenanceAn MCP server that enables AI assistants to control Home Assistant via natural language, including device control, automation management, and system configuration.Last updatedMIT
- Alicense-qualityAmaintenanceAn MCP server that enables AI assistants to manage Cisco Unified Communications Manager (CUCM) via AXL SOAP API, supporting provisioning, configuration, and database queries through natural language.Last updated226MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bbruhn91/mcp-server-thingpark'
If you have feedback or need assistance with the MCP directory API, please join our Discord server