Connects Claude to the WarframeStat API through Pipeworx's gateway infrastructure. The source doesn't list specific tools, but given the API it wraps, you'd expect access to Warframe's live game state like current alerts, invasions, void fissures, and world cycle timers. Part of a larger gateway offering 851+ data sources, so you can either connect to this Warframe endpoint directly or grab the full Pipeworx gateway for broader access. Includes an ask_pipeworx tool that takes plain English questions instead of making you call tools directly. Useful if you're building Warframe companion tools or need real time game state data in your AI workflows.
Warframe MCP (WarframeStat API).
Part of Pipeworx — an MCP gateway connecting AI agents to 851+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"warframe": {
"url": "https://gateway.pipeworx.io/warframe/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 851+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Warframe data" })
The gateway picks the right tool and fills the arguments automatically.
MIT