-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
79 lines (79 loc) · 2.56 KB
/
manifest.json
File metadata and controls
79 lines (79 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
{
"manifest_version": "0.3",
"name": "@pipeshub-ai/mcp",
"version": "1.0.0",
"description": "",
"long_description": "PipesHub API: Unified API documentation for PipesHub services.\n\nPipesHub is an enterprise-grade platform providing:\n- User authentication and management\n- Document storage and version control\n- Knowledge base management\n- Enterprise search and conversational AI\n- Third-party integrations via connectors\n- System configuration management\n- Crawling job scheduling\n- Email services\n\n## Authentication\nMost endpoints require JWT Bearer token authentication. Some internal endpoints use scoped tokens for service-to-service communication.\n\n## Base URLs\nAll endpoints use the `/api/v1` prefix unless otherwise noted.\n",
"author": {
"name": "Pipeshub"
},
"server": {
"type": "node",
"entry_point": "./bin/mcp-server.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/bin/mcp-server.js",
"start",
"--instance-url",
"${user_config.instance_url}",
"--bearer-auth",
"${user_config.bearer_auth}",
"--client-id",
"${user_config.client_id}",
"--client-secret",
"${user_config.client_secret}",
"--token-url",
"${user_config.token_url}"
]
}
},
"display_name": "@pipeshub Ai/mcp",
"prompts": [],
"keywords": [
"@pipeshub",
"ai/mcp",
"pipeshub",
"api",
"unified",
"documentation"
],
"user_config": {
"instance_url": {
"type": "string",
"title": "instance_url",
"description": "Base server URL (without /api/v1) ",
"required": false,
"default": "https://app.pipeshub.com"
},
"bearer_auth": {
"type": "string",
"title": "bearerAuth",
"description": "The bearerAuth to use for the request",
"required": false,
"sensitive": true
},
"client_id": {
"type": "string",
"title": "ClientID",
"description": "The ClientID to use for the request",
"required": true,
"sensitive": true
},
"client_secret": {
"type": "string",
"title": "ClientSecret",
"description": "The ClientSecret to use for the request",
"required": true,
"sensitive": true
},
"token_url": {
"type": "string",
"title": "TokenURL",
"description": "The TokenURL to use for the request",
"required": true,
"default": "/api/v1/oauth2/token",
"sensitive": true
}
}
}