github huggingface/huggingface_hub v0.33.2
[v0.33.2] [Tiny-Agent]: Switch to VSCode MCP format

latest releases: v0.34.4, v0.34.3, v0.34.2...
2 months ago

Full Changelog: v0.33.1...v0.33.2

  • [Tiny-Agent] Switch to VSCode MCP format + fix headers handling #3166 by @Wauplin

Breaking changes:

  • no more config nested mapping => everything at root level
  • headers at root level instead of inside options.requestInit
  • updated the way values are pulled from ENV (based on input id)

Example of agent.json:

{
  "model": "Qwen/Qwen2.5-72B-Instruct",
  "provider": "nebius",
  "inputs": [
    {
      "type": "promptString",
      "id": "hf-token",
      "description": "Token for Hugging Face API access",
      "password": true
    }
  ],
  "servers": [
    {
      "type": "http",
      "url": "https://huggingface.co/mcp",
      "headers": {
        "Authorization": "Bearer ${input:hf-token}"
      }
    }
  ]
}

Find more examples in https://huggingface.co/datasets/tiny-agents/tiny-agents

Don't miss a new huggingface_hub release

NewReleases is sending notifications on new releases.