https://github.com/putdotio/putio-mcp-server
MCP server for interacting put.io
https://github.com/putdotio/putio-mcp-server
bittorrent mcp
Last synced: 3 months ago
JSON representation
MCP server for interacting put.io
- Host: GitHub
- URL: https://github.com/putdotio/putio-mcp-server
- Owner: putdotio
- License: mit
- Created: 2025-04-03T19:33:01.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T11:43:05.000Z (5 months ago)
- Last Synced: 2025-05-05T12:43:37.317Z (5 months ago)
- Topics: bittorrent, mcp
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - **putio-mcp-server** - MCP server for interacting put.io `python` `bittorrent` `mcp` `server` `pip install git+https://github.com/putdotio/putio-mcp-server` (AI/ML)
- awesome-mcp-servers - **putio-mcp-server** - MCP server for interacting put.io `python` `bittorrent` `mcp` `server` `pip install git+https://github.com/putdotio/putio-mcp-server` (AI/ML)
- Awesome-Official-MCP-Servers - Put.io - mcp-server?style=social) | Interact with your Put.io account to download torrents. | | (官方 MCP 服务器列表)
- Awesome-Official-MCP-Servers - Put.io - mcp-server?style=social) | Interact with your Put.io account to download torrents. | | (官方 MCP 服务器列表)
README
# putio-mcp-server
MCP server for interacting with put.io## Features
- List active transfers
- Add new transfers via URL or magnet link
- Cancel existing transfers
- Get browser links for completed transfers## Prerequisites
- [Claude Desktop](https://modelcontextprotocol.io/quickstart/user)
- Python 3.x
- [uvx](https://docs.astral.sh/uv/getting-started/installation/)
- Put.io account and API token ([guide](https://help.put.io/en/articles/5972538-how-to-get-an-oauth-token-from-put-io))## Setup
Put following config in your `claude_desktop_config.json`.
Don't forget to replace `` with your own API token.
```json
{
"mcpServers": {
"putio": {
"command": "uvx",
"args": [
"putio-mcp-server"
],
"env": {
"PUTIO_TOKEN": ""
}
}
}
}
```