-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathco.huggingface-mcp.json
More file actions
70 lines (70 loc) · 2.42 KB
/
Copy pathco.huggingface-mcp.json
File metadata and controls
70 lines (70 loc) · 2.42 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "../schemas/server-definition.schema.json",
"id": "co.huggingface-mcp",
"name": "Hugging Face",
"alias": "huggingface",
"description": "Connect to Hugging Face's hosted MCP endpoint to search the Hub (models, datasets, Spaces, papers), search and fetch Hub documentation, and use Gradio AI applications. Works anonymously; add a token for higher limits and access to your own resources.",
"logo": "https://avatars.githubusercontent.com/u/25720743?v=4",
"schema_version": "2.1",
"categories": [
"ai-ml"
],
"tags": [
"huggingface",
"ai",
"machine-learning",
"models",
"datasets",
"spaces",
"gradio"
],
"transport": {
"type": "http",
"url": "https://huggingface.co/mcp",
"headers": {
"Authorization": "Bearer ${input:HF_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "HF_TOKEN",
"label": "Hugging Face Token",
"description": "Optional. Anonymous access works, but a token unlocks higher rate limits and access to your private models, datasets, Spaces, and tools. Create a token with read access at huggingface.co/settings/tokens.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "hf_********************",
"obtain": {
"url": "https://huggingface.co/settings/tokens",
"instructions": "1. Open huggingface.co/settings/tokens\n2. Click 'Create new token'\n3. Choose a token type (a read token is enough for most use)\n4. Copy the token (starts with hf_)",
"button_label": "Create Token"
}
}
]
}
},
"auth": {
"type": "optional_api_key",
"instructions": "Works without a token (anonymous access). Add a Hugging Face token via the Authorization: Bearer header for higher rate limits and access to your own private resources. Create one at huggingface.co/settings/tokens."
},
"contributor": {
"name": "Hugging Face",
"github": "huggingface",
"url": "https://huggingface.co"
},
"links": {
"repository": "https://github.com/huggingface/hf-mcp-server",
"homepage": "https://huggingface.co/mcp",
"documentation": "https://huggingface.co/settings/mcp"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/huggingface/hf-mcp-server/releases"
}