GitHub Stars
60
User Rating
Not Rated
Favorites
0
Views
25
Forks
10
Issues
2
Installation
Difficulty
BeginnerEstimated Time
5-10 minutes
Installation
Installation
Prerequisites
Please specify required software and versions:Python: 3.6 or higher
Installation Steps
1. Clone Repository
bash
git clone https://github.com/Arindam200/devto-mcp.git
cd devto-mcp
2. Connect to the MCP Server
Copy the below JSON with the appropriate {{PATH}} values: ``json
{
"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.
}
}
}
}
``