MCP server for FIWARE Orion Context Broker — NGSI-v2 context management for LLMs
Project description
fiware-orion-mcp
MCP (Model Context Protocol) server for FIWARE Orion Context Broker. Enables LLMs like Claude to manage NGSI-v2 context entities — IoT devices, cameras, sensors, vehicles, and any real-world object modeled as a digital twin.
No official FIWARE MCP exists yet. This is the first one.
What is FIWARE Orion?
FIWARE is an open standard (ETSI NGSI-LD) for Smart City and IoT data management. The Orion Context Broker is its core component — it stores the current state of all entities and notifies subscribers when things change.
Tools available
| Tool | Description |
|---|---|
orion_get_version |
Verify Orion connectivity and version |
orion_list_types |
List all entity types and their attributes |
orion_query_entities |
Query entities by type, pattern, filter, geo |
orion_get_entity |
Get full details of a specific entity |
orion_create_entity |
Create a new NGSI entity |
orion_update_attributes |
Update entity attributes |
orion_delete_entity |
Delete an entity |
orion_create_subscription |
Subscribe to attribute change notifications |
orion_list_subscriptions |
List active subscriptions |
quantumleap_get_history |
Get time-series history for an entity |
quantumleap_get_type_history |
Get aggregated history across entity type |
Quick start
1. Start FIWARE stack (Docker)
cd docker
docker compose up -d
# Verify:
curl http://localhost:1026/version
curl http://localhost:8668/version
2. Install MCP server
pip install fiware-orion-mcp
# or from source:
pip install -e .
3. Configure Claude Code
Add to your ~/.claude/mcp.json or project MCP config:
{
"mcpServers": {
"fiware-orion": {
"command": "python",
"args": ["-m", "fiware_mcp.server"],
"env": {
"ORION_URL": "http://your-orion-host:1026",
"QUANTUMLEAP_URL": "http://your-ql-host:8668"
}
}
}
}
4. Environment variables
| Variable | Default | Description |
|---|---|---|
ORION_URL |
http://localhost:1026 |
Orion Context Broker URL |
QUANTUMLEAP_URL |
http://localhost:8668 |
QuantumLeap URL |
FIWARE_SERVICE |
(empty) | Multi-tenancy service name |
FIWARE_SERVICE_PATH |
/ |
Multi-tenancy service path |
Example session with Claude
> List all entity types in the Context Broker
> Show me all Camera entities that are offline
> Get the full details of Camera:TIMONE-01
> Update Camera:TIMONE-01 status to "maintenance"
> Show me the uptime history of Camera:TIMONE-01 for the last 7 days
Roadmap
- NGSI-LD support (Orion-LD)
- Batch operations
- Geo-query helpers (find entities near a point)
- Export entities as GeoJSON
License
MIT — contributions welcome.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fiware_orion_mcp-0.1.0.tar.gz.
File metadata
- Download URL: fiware_orion_mcp-0.1.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9bc23d460dbfdf0bdeee8debe41bab2cafa082908ef7b9ad2afa361eeea6d0f
|
|
| MD5 |
c8f830ddfdfa5b504cc4fb18c3a5747d
|
|
| BLAKE2b-256 |
2ad7ee672039850dd4662d7ebbd68979d64cab9b156ba30ab64a7dbaa9ff5ef3
|
File details
Details for the file fiware_orion_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fiware_orion_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ae3f6698e5f69241dd7710d369000b00891a3716c61aa5226b930fc2bd079a2
|
|
| MD5 |
ee7ccafdeca092b6b678eafa1e165251
|
|
| BLAKE2b-256 |
13f1542d25553c0d4dc25ff8a2a71c9b4a4a9a352771ff89a647435e3560132a
|