
Dev.to MCP Server
Enables interaction with the dev.to platform through its public API. Allows users to retrieve articles, user profiles, tags, comments, and perform article searches without requiring authentication.
README
Dev.to MCP Server
A remote Model Context Protocol (MCP) server for interacting with the dev.to public API without requiring authentication.
Features
This MCP server provides access to the following dev.to public API endpoints:
- get_articles - Get articles from dev.to with optional filters (username, tag, state, pagination)
- get_article - Get a specific article by ID or path
- get_user - Get user information by ID or username
- get_tags - Get popular tags from dev.to
- get_comments - Get comments for a specific article
- search_articles - Search articles using query parameters
Installation
npm install
npm run build
Usage
The server runs as a remote HTTP server on port 3000 (or the PORT environment variable) and can be used with any MCP-compatible client.
npm start
The server will be available at http://localhost:3000
for MCP connections.
Development
# Build the project
npm run build
# Watch mode for development
npm run dev
# Linting
npm run lint
npm run lint:fix
# Formatting
npm run format
npm run format:check
Docker
Build and run the MCP server using Docker:
# Build the Docker image
docker build -t dev-to-mcp .
# Run the container
docker run -p 3000:3000 dev-to-mcp
The server will be available at http://localhost:3000/mcp
for MCP connections.
Docker Compose
For easier development, you can also use Docker Compose:
# docker-compose.yml
version: '3.8'
services:
dev-to-mcp:
build: .
ports:
- "3000:3000"
environment:
- PORT=3000
docker-compose up --build
API Endpoints
All endpoints use the public dev.to API (https://dev.to/api
) and do not require authentication.
get_articles
Get articles with optional filtering:
username
- Filter by author usernametag
- Filter by tagtop
- Top articles (1, 7, 30, or infinity days)page
- Pagination page (default: 1)per_page
- Articles per page (default: 30, max: 1000)state
- Filter by state (fresh, rising, all)
get_article
Get a specific article:
id
- Article IDpath
- Article path (e.g., "username/article-slug")
get_user
Get user information:
id
- User IDusername
- Username
get_tags
Get popular tags:
page
- Pagination page (default: 1)per_page
- Tags per page (default: 10, max: 1000)
get_comments
Get comments for an article:
article_id
- Article ID (required)
search_articles
Search articles:
q
- Search query (required)page
- Pagination page (default: 1)per_page
- Articles per page (default: 30, max: 1000)search_fields
- Fields to search (title, body_text, tag_list)
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.