- Home
- MCP servers
- TagoIO
TagoIO
- javascript
4
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"tago-io-mcp-server": {
"command": "npx",
"args": [
"-y",
"@tago-io/mcp-server"
],
"env": {
"TAGOIO_API": "https://api.us-e1.tago.io",
"TAGOIO_TOKEN": "YOUR-TOKEN"
}
}
}
}The TagoIO MCP Server lets AI models talk directly to your TagoIO account, giving contextual access to devices, data, and platform resources to streamline development and enable intelligent data analysis.
How to use
You run a local MCP client that talks to the TagoIO MCP Server to request data, manage devices, or generate analysis scripts. Start the MCP server once, then send prompts from your AI platform or IDE that request resources, perform operations, or generate TagoIO Analysis scripts with the proper context. Use tokens with restricted permissions to limit what the MCP can access, and configure the API endpoint to match your region.
How to install
Prerequisites: ensure you have Node.js 18+ installed on your machine.
Create a local MCP configuration that points to the correct MCP server and tokens.
Use the following configuration snippet to set up the MCP server integration.
{
"mcpServers": {
"@tago-io/mcp": {
"command": "npx",
"args": ["-y", "@tago-io/mcp-server"],
"env": {
"TAGOIO_TOKEN": "YOUR-TOKEN",
"TAGOIO_API": "https://api.us-e1.tago.io"
}
}
}
}
Additional setup and notes
Configuration parameters explained: replace YOUR-TOKEN with your TagoIO Profile token or an Analysis Token. For better security, use an Analysis token with permissions restricted to the resources you need, and ensure your analysis runs in External mode to allow token usage.
If you are operating in the European region, update the API endpoint to https://api.eu-w1.tago.io.
Available tools
Device Management
Access device information, configurations, and real-time data within TagoIO.
Data Analysis
Perform statistical operations and generate reports on stored data.
Platform Integration
Retrieve users, actions, analysis scripts, and account statistics to power workflows.
Code Generation
AI-assisted generation of TagoIO Analysis scripts with proper context.
Development Support
Debug assistance and tag relationship analysis to accelerate development.