geomanic
Installation
SKILL.md
Geomanic Skill
This skill connects to the Geomanic MCP API to query travel statistics, manage waypoints, and analyze journeys.
Authentication
The API key is stored in the environment variable GEOMANIC_TOKEN. All requests must include it as a Bearer token.
How to call the API
Use curl via the exec tool to send JSON-RPC requests to https://geomanic.com/api/v1/mcp:
curl -s -X POST https://geomanic.com/api/v1/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $GEOMANIC_TOKEN" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"TOOL_NAME","arguments":{...}}}'