What is this?
This is the Giatec Platform MCP Server — a Model Context Protocol server that wraps Giatec's SmartMix (concrete mix design) and MixPilot (IoT delivery tracking) REST APIs as structured tools for AI agents.
AI agents — Claude, ChatGPT, Gemini, Copilot, and others — connect here and can authenticate, query mix designs, inspect delivery tickets, and monitor in-transit trucks with live sensor data, all through natural language.
This is not a web application. There is no browser-based UI — authentication and all interactions happen through MCP tools called by an AI agent.
Endpoints
How to connect
claude mcp add giatec \
--transport http \
__SERVER_URL__/mcp
Or add to .claude/settings.json:
{
"mcpServers": {
"giatec": {
"type": "http",
"url": "__SERVER_URL__/mcp"
}
}
}Edit claude_desktop_config.json:
{
"mcpServers": {
"giatec": {
"type": "streamable-http",
"url": "__SERVER_URL__/mcp"
}
}
}{
"giatec": {
"url": "__SERVER_URL__/mcp"
}
}curl -s __SERVER_URL__/health
# Expected response:
{
"status": "ok",
"service": "Giatec Platform MCP Server",
"env": "development"
}
First steps after connecting
auth_login(username="you@company.com", password="...")auth_select_account(account_id="acct_abc123")# Browse mix designs
sm_list_mixes()
# Monitor in-transit trucks
mp_list_trips(
start_time="2024-06-01T00:00:00Z",
end_time="2024-06-02T00:00:00Z"
)