Wraps the Currents API to give Claude access to news data through a hosted gateway. Part of the Pipeworx platform, which aggregates 832+ data sources behind a single MCP interface. You can call individual tools directly or use the ask_pipeworx convenience method to query in plain English and let the gateway route to the right endpoint. The source doesn't list specific tools, but Currents API typically provides news search, filtering by category or region, and headline retrieval. Useful when you need current news data in your agent workflows without managing API keys or building wrappers yourself. Runs over streamable HTTP, so no local installation required.
Currents MCP — wraps the Currents API (currentsapi.services)
Part of Pipeworx — an MCP gateway connecting AI agents to 832+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"currents": {
"url": "https://gateway.pipeworx.io/currents/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 832+ 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 Currents data" })
The gateway picks the right tool and fills the arguments automatically.
MIT