Wraps the DEV Community API so you can pull articles, search posts, and grab user profiles without leaving your AI workflow. No auth needed for public reads, which covers most use cases. Ships as part of Pipeworx's gateway that bundles 250+ data sources, but you can hit the DEV.to endpoint directly if that's all you need. Includes an ask_pipeworx tool that lets you query in plain English instead of wiring up API calls manually. Useful when you're researching technical topics, tracking trending posts, or building content aggregation into an agent workflow.
DEV.to MCP — wraps the DEV Community API (free, no auth for public reads)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"devto": {
"url": "https://gateway.pipeworx.io/devto/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ 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 Devto data" })
The gateway picks the right tool and fills the arguments automatically.
MIT