{"id":48940197,"url":"https://github.com/extinctsion/mcp-py-devto","last_synced_at":"2026-04-17T13:12:27.573Z","repository":{"id":293869933,"uuid":"985198980","full_name":"extinctsion/mcp-py-devto","owner":"extinctsion","description":"MCP server written in python for dev.to","archived":false,"fork":false,"pushed_at":"2025-05-17T16:55:51.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T17:19:09.626Z","etag":null,"topics":["mcp-server","python3","visual-studio-code"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/extinctsion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-17T09:08:15.000Z","updated_at":"2025-05-17T16:55:54.000Z","dependencies_parsed_at":"2025-05-18T15:00:52.363Z","dependency_job_id":null,"html_url":"https://github.com/extinctsion/mcp-py-devto","commit_stats":null,"previous_names":["extinctsion/mcp-py-devto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/extinctsion/mcp-py-devto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extinctsion%2Fmcp-py-devto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extinctsion%2Fmcp-py-devto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extinctsion%2Fmcp-py-devto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extinctsion%2Fmcp-py-devto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/extinctsion","download_url":"https://codeload.github.com/extinctsion/mcp-py-devto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extinctsion%2Fmcp-py-devto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31930260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp-server","python3","visual-studio-code"],"created_at":"2026-04-17T13:12:25.413Z","updated_at":"2026-04-17T13:12:27.559Z","avatar_url":"https://github.com/extinctsion.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MCP Python Dev.to Integration\n\nA 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.\n\n## Features\n\n- RESTful API integration with dev.to\n- Message queuing and routing\n- Real-time content updates\n- Article management capabilities\n\n## Prerequisites\n\n- Python 3.11 or higher\n- pip (Python package manager)\n- dev.to API key\n- Latest Visual Studio Code\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/yourusername/mcp-py-devto.git\n   cd mcp-py-devto\n   ```\n\n2. Create and activate a virtual environment:\n\n   ```bash\n   python -m venv venv\n   # On Windows:\n   venv\\Scripts\\activate\n   # On Unix or MacOS:\n   source venv/bin/activate\n   ```\n\n3. Install required dependencies:\n    cd to the `pyproject.toml` directory and write in terminal - \n   ```bash\n   pip install .\n   ```\n\n## Configuration\n\n1. Go to `.vscode/mcp.json` file and insert your dev.to API key\n\n   ```json\n   DEVTO_API_KEY=your_api_key_here\n   ```\n\n2. Get your dev.to API key from [dev.to/settings/account](https://dev.to/settings/account)\n\n## Usage\n\n1. Start the MCP server:\n   - Go to `.vscode/mcp.json` and press on the start button.\n\n2. The server will start listening on the configured port (default: 8080)\n\n3. Send messages to the server using the provided client libraries or API endpoints:\n\n   ```python\n   from mcp_client import MCPClient\n\n   client = MCPClient()\n   response = client.send_message({\n       \"action\": \"create_article\",\n       \"data\": {\n           \"title\": \"My New Article\",\n           \"content\": \"Article content here\"\n       }\n   })\n   ```\n\n## API Documentation\n\n### Available Endpoints\n\n- `POST /message` - Send a message to the MCP server\n- `GET /status` - Check server status\n- `GET /metrics` - View server metrics\n\n### Message Types\n\n- `create_article`\n- `update_article`\n- `delete_article`\n- `get_article`\n\n## Development\n\nTo contribute to the project:\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## Testing\n\nRun the test suite:\n\n```bash\npytest tests/\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md) for details on how to submit pull requests.\n\n## Support\n\nFor support, please open an issue in the GitHub repository or contact the maintainers.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextinctsion%2Fmcp-py-devto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fextinctsion%2Fmcp-py-devto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextinctsion%2Fmcp-py-devto/lists"}