D
Dev.to
Search Dev.to articles.
·No reviews yet
Share:
About
Auto-generated
Dev.to is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Dev.to.
- What is the Dev.to MCP?
- The Dev.to MCP allows you to search for articles on the Dev.to platform. It provides a programmatic way to access and retrieve content from Dev.to, focusing on developer-related topics and blog posts.
- How do I install the Dev.to MCP in an MCP client?
- To install, you usually clone the repository from https://github.com/forem/dev-mcp. The client then needs to be configured to recognize the local MCP. Specific steps vary by client, such as Claude Desktop, Cursor, or Cline.
- Does the Dev.to MCP require an API key or other credentials?
- Yes, this MCP uses an API key for authentication. You will need to obtain a valid API key from Dev.to to use its services. The method for configuring this key depends on your MCP client.
- What are the common use cases for the Dev.to MCP?
- Typical use cases include integrating Dev.to article searches into custom applications, automating content discovery for specific tech topics, and building personalized news feeds for developers. It's useful for aggregating technical blog content.
- Are there any known limitations or prerequisites for using the Dev.to MCP?
- A key prerequisite is a stable internet connection to access the Dev.to public API. A potential limitation could be rate limiting imposed by the Dev.to API, which might restrict the number of searches you can perform in a given timeframe.
- Is there a cost associated with using the Dev.to MCP?
- The MCP itself is open-source and free, as it is community-provided. Any costs would depend on Dev.to's API usage policies, if they have premium tiers or specific limits that incur charges beyond basic access.
Install Dev.to
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"dev-to": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dev-to"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"dev-to": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dev-to"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"dev-to": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dev-to"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.