-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.64 KB
/
server.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.MariusAure/needhuman-mcp",
"title": "NeedHuman",
"description": "Human-as-a-Service for AI agents. Delegate tasks that need a real human, get results via API.",
"version": "0.3.2",
"websiteUrl": "https://needhuman.ai",
"icon": "https://needhuman.ai/icon.svg",
"repository": {
"url": "https://github.com/MariusAure/needhuman-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@needhuman/mcp-server",
"version": "0.3.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "NEEDHUMAN_API_KEY",
"description": "Your NeedHuman API key. Self-register for free (3 tasks): curl -X POST https://needhuman.ai/api/v1/keys/register -H 'Content-Type: application/json' -d '{\"name\":\"my-agent\"}'",
"isRequired": true,
"isSecret": true
},
{
"name": "NEEDHUMAN_API_URL",
"description": "API base URL. Defaults to https://needhuman.ai",
"isRequired": false,
"isSecret": false
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://needhuman.ai/mcp",
"headers": [
{
"name": "Authorization",
"description": "Bearer token. Self-register for free (3 tasks): curl -X POST https://needhuman.ai/api/v1/keys/register -H 'Content-Type: application/json' -d '{\"name\":\"my-agent\"}'",
"isRequired": true,
"isSecret": true
}
]
}
]
}