mcp-py-devto
Allows interaction with the dev.to API for managing articles, including creating, updating, deleting, and retrieving articles.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-py-devtocreate a new article titled 'Getting Started with MCP'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Python Dev.to Integration
A Message Control Program (MCP) server implementation in Python that integrates with dev.to platform. This project allows you to interact with dev.to's API through a message-based architecture.
Features
RESTful API integration with dev.to
Message queuing and routing
Real-time content updates
Article management capabilities
Related MCP server: mcp-devto
Prerequisites
Python 3.11 or higher
pip (Python package manager)
dev.to API key
Latest Visual Studio Code
Installation
Clone the repository:
git clone https://github.com/yourusername/mcp-py-devto.git cd mcp-py-devtoCreate and activate a virtual environment:
python -m venv venv # On Windows: venv\Scripts\activate # On Unix or MacOS: source venv/bin/activateInstall required dependencies: cd to the
pyproject.tomldirectory and write in terminal -pip install .
Configuration
Go to
.vscode/mcp.jsonfile and insert your dev.to API keyDEVTO_API_KEY=your_api_key_hereGet your dev.to API key from dev.to/settings/account
Usage
Start the MCP server:
Go to
.vscode/mcp.jsonand press on the start button.
The server will start listening on the configured port (default: 8080)
Send messages to the server using the provided client libraries or API endpoints:
from mcp_client import MCPClient client = MCPClient() response = client.send_message({ "action": "create_article", "data": { "title": "My New Article", "content": "Article content here" } })
API Documentation
Available Endpoints
POST /message- Send a message to the MCP serverGET /status- Check server statusGET /metrics- View server metrics
Message Types
create_articleupdate_articledelete_articleget_article
Development
To contribute to the project:
Fork the repository
Create a feature branch
Make your changes
Submit a pull request
Testing
Run the test suite:
pytest tests/License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please read our Contributing Guide for details on how to submit pull requests.
Support
For support, please open an issue in the GitHub repository or contact the maintainers.
This server cannot be deployed
Maintenance
Related MCP Connectors
Publish and manage articles, series, comments, reactions, newsletters and blog analytics.
Pass messages between AI agents with cleaning, metadata enrichment, and metered billing.
Manage Telegram drafts, media, schedules and publications from AI clients.
Create, manage, publish, and analyze Inblog content through AI agents.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables 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.45-
- AlicenseNot gradedqualityCmaintenanceWraps the DEV Community API to enable AI agents to read public Devto articles and posts without authentication.1 npmMIT
- AlicenseAqualityCmaintenanceProvides tools to search and retrieve articles from the dev.to API, including search by query, tag, or technology, and fetching full articles by ID or slug.5MIT
- FlicenseNot gradedqualityDmaintenanceProvides MCP tools to interact with Dev.to, enabling searching, browsing, and publishing articles through natural language.-