Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

devto-mcp

MCP.Pizza Chef: Arindam200

The devto-mcp is a Model Context Protocol server that enables AI assistants to access, search, and interact with Dev.to content. It supports fetching latest and trending articles, searching by criteria, retrieving detailed article and user information, accessing content by tags or usernames, and publishing new articles. This server facilitates seamless integration of Dev.to's blogging platform into AI workflows, enhancing content discovery and creation.

Use This MCP server To

Fetch latest and trending Dev.to articles for content discovery Search Dev.to articles by keywords, tags, or authors Retrieve detailed information about specific Dev.to articles Access user profiles and their published articles on Dev.to Publish new articles directly to Dev.to via AI workflows Filter articles by tags or usernames for targeted content retrieval Integrate Dev.to content into AI-powered writing assistants Automate content curation from Dev.to for newsletters or blogs

README

Dev.to MCP Server

This repository contains a Model Context Protocol server implementation for Dev.to that allows AI assistants to access and interact with Dev.to content.

Dev.to Server MCP server

image

What is MCP?

The Model Context Protocol (MCP) is a standard for enabling AI assistants to interface with external services, tools, and data sources. This server implements the MCP specification to provide access to Dev.to content. To know more about MCP, Check this video

Features

  • Fetch latest and trending articles from Dev.to
  • Search for articles by various criteria
  • Get detailed information about specific articles
  • Get Detailed information about a User.
  • Access articles by tag or username
  • Create and publish new articles to Dev.to
  • Update existing articles
  • Caching mechanism to improve performance and reduce API calls

Installation

  1. Clone this repository
git clone https://github.com/Arindam200/devto-mcp.git
cd devto-mcp
  1. Connect to the MCP server

    Copy the below json with the appropriate {{PATH}} values:

    {
     "mcpServers": {
       "devto": {
         "command": "{{PATH_TO_UV}}", // Run `which uv` and place the output here
         "args": [
                   "--directory",
                   "{{PATH_TO_SRC}}",// cd into the repo, run `pwd` and enter the output here
                   "run",
                   "server.py"
         ],
         "env": {
           "DEV_TO_API_KEY":"Your Dev.to API Key" // Get it from https://dev.to/settings/extensions.
         }
       }
     }
    }

    You can obtain a Dev.to API key from your Dev.to settings page.

    For Claude, save this as claude_desktop_config.json in your Claude Desktop configuration directory at:

    ~/Library/Application Support/Claude/claude_desktop_config.json
    

    For Cursor, save this as mcp.json in your Cursor configuration directory at:

    ~/.cursor/mcp.json
    
  2. Restart Claude Desktop / Cursor

    Open Claude Desktop and you should now see Devto as an available integration.

    Or restart Cursor.

Available Tools

The server provides the following tools:

  • get_latest_articles() - Get the latest articles from Dev.to
  • get_top_articles() - Get the most popular articles from Dev.to
  • get_articles_by_tag(tag) - Get articles by tag
  • get_article_by_id(id) - Get a specific article by ID
  • search_articles(query, page=1) - Search for articles by keywords in title/description
  • get_article_details(article_id) - Get full content and metadata for a specific article
  • get_articles_by_username(username) - Get articles written by a specific author
  • create_article(title, body_markdown, tags, published) - Create and publish a new article
  • update_article(article_id, title, body_markdown, tags, published) - Update an existing article

Example Queries

Here are some examples of what you can ask an AI assistant connected to this server:

  • "Find articles about Python on Dev.to"
  • "Show me the latest Dev.to articles"
  • "Get details for article 1234"
  • "What articles has user 'ben' written?"
  • "Search for articles about machine learning"
  • "Create a new article titled 'Getting Started with Python'"
  • "Update my article with ID 5678 to fix a typo in the content"

Advanced Features

Custom Prompts

The server provides pre-defined prompts that can be used by AI assistants:

  • search_prompt - Create a formatted search prompt
  • analyze_article - Create a prompt to analyze a specific article

Authentication

The server requires a Dev.to API key for certain operations, particularly for creating and updating articles. The API key should be set as an environment variable DEV_TO_API_KEY.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

devto-mcp FAQ

How do I authenticate with the devto-mcp server?
Authentication typically requires an API key or token from Dev.to, configured in the MCP server settings to enable secure access.
Can I publish articles to Dev.to using this MCP server?
Yes, the devto-mcp server supports creating and publishing new articles directly to Dev.to through the MCP interface.
What types of article searches are supported?
You can search articles by keywords, tags, usernames, and other criteria supported by Dev.to's API.
Is user information accessible through this MCP server?
Yes, detailed user profiles and their published articles can be retrieved via the server.
Does the server support fetching trending articles?
Yes, it can fetch the latest and trending articles from Dev.to to keep content up to date.
How does this MCP server handle rate limits from Dev.to?
The server implements standard rate limiting and caching strategies to comply with Dev.to API usage policies.
Can this MCP server be integrated with multiple LLM providers?
Yes, it is provider-agnostic and can work with OpenAI, Anthropic Claude, and Google Gemini models.
What is required to deploy the devto-mcp server?
Deployment requires setting up the server environment, configuring API credentials, and ensuring network access to Dev.to's API.