-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
56 lines (56 loc) · 1.67 KB
/
Copy pathserver.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.t4dhg/mcp-factorial",
"title": "MCP FactorialHR",
"description": "Full CRUD MCP server for FactorialHR: employees, teams, time off, projects, ATS, payroll.",
"version": "7.1.0",
"repository": {
"url": "https://github.com/t4dhg/mcp-factorial",
"source": "github"
},
"websiteUrl": "https://github.com/t4dhg/mcp-factorial#readme",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@t4dhg/mcp-factorial",
"version": "7.1.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "FACTORIAL_API_KEY",
"description": "API key from FactorialHR (Settings > API Keys)",
"isRequired": true,
"isSecret": true
},
{
"name": "FACTORIAL_API_VERSION",
"description": "API version (default: 2025-10-01)",
"isRequired": false,
"isSecret": false
},
{
"name": "FACTORIAL_TIMEOUT_MS",
"description": "Request timeout in milliseconds (default: 30000)",
"isRequired": false,
"isSecret": false
},
{
"name": "FACTORIAL_MAX_RETRIES",
"description": "Maximum retry attempts (default: 3)",
"isRequired": false,
"isSecret": false
},
{
"name": "DEBUG",
"description": "Enable debug logging (default: false)",
"isRequired": false,
"isSecret": false
}
]
}
]
}