インストール方法
難易度
初級推定所要時間
5-10 分
インストール方法
インストール方法
前提条件
必要なソフトウェアとバージョンを明記してください。Python: 3.6以上
インストール手順
1. リポジトリのクローン
bash
git clone https://github.com/Arindam200/devto-mcp.git
cd devto-mcp
2. MCPサーバーに接続
以下のJSONを適切な{{PATH}}値でコピーしてください。 ``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.
}
}
}
}
``