File size: 445 Bytes
8d7bb18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"model": "Qwen/Qwen2.5-72B-Instruct",
"provider": "nebius",
"inputs": [
{
"type": "promptString",
"id": "hf-token",
"description": "Your Hugging Face Token",
"password": true
}
],
"servers": [
{
"type": "stdio",
"command": "npx",
"args": [
"mcp-remote",
"https://huggingface.co/mcp",
"--header",
"Authorization: Bearer ${HF_TOKEN}"
],
"env": {
"HF_TOKEN": "${input:hf-token}"
}
}
]
} |