get_torrent_details
Retrieve detailed information about a specific torrent, including optional magnet link, using the YggTorrent MCP Server for secure, programmatic access.
Instructions
Get details about a specific torrent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| torrent_id | Yes | ||
| with_magnet_link | No |
Input Schema (JSON Schema)
{
"properties": {
"torrent_id": {
"title": "Torrent Id",
"type": "integer"
},
"with_magnet_link": {
"default": false,
"title": "With Magnet Link",
"type": "boolean"
}
},
"required": [
"torrent_id"
],
"type": "object"
}