get_space
Pack: huggingface · Endpoint: https://gateway.pipeworx.io/huggingface/mcp
Detailed Hugging Face Space metadata by repo_id (e.g. “stabilityai/stable-diffusion”) and optional revision; returns sdk, runtime status, likes, and linked models.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
repo_id | string | yes | |
revision | string | no |
Example call
Arguments
{
"repo_id": "gradio-demos/chatbot"
}
curl
curl -X POST https://gateway.pipeworx.io/huggingface/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_space","arguments":{"repo_id":"gradio-demos/chatbot"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_space', {
"repo_id": "gradio-demos/chatbot"
});
More examples
{
"repo_id": "stabilityai/stable-diffusion-xl"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Detailed Space repository information"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"huggingface": {
"url": "https://gateway.pipeworx.io/huggingface/mcp"
}
}
}
See Getting Started for client-specific install steps.