@freelancercom/phabricator-mcp 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/conpherence.js +0 -3
- package/dist/tools/diffusion.js +6 -0
- package/dist/tools/file.js +4 -2
- package/dist/tools/harbormaster.js +5 -0
- package/dist/tools/maniphest.js +3 -0
- package/dist/tools/owners.js +0 -1
- package/dist/tools/paste.js +2 -0
- package/dist/tools/project.js +4 -3
- package/dist/tools/user.js +1 -0
- package/package.json +1 -1
|
@@ -10,9 +10,6 @@ export function registerConpherenceTools(server, client) {
|
|
|
10
10
|
participants: z.array(z.string()).optional().describe('Participant user PHIDs'),
|
|
11
11
|
query: z.string().optional().describe('Full-text search query'),
|
|
12
12
|
})).optional().describe('Search constraints'),
|
|
13
|
-
attachments: jsonCoerce(z.object({
|
|
14
|
-
participants: z.boolean().optional().describe('Include participant details'),
|
|
15
|
-
})).optional().describe('Data attachments'),
|
|
16
13
|
order: z.string().optional().describe('Result order'),
|
|
17
14
|
limit: z.coerce.number().max(100).optional().describe('Maximum results (max 100)'),
|
|
18
15
|
after: z.string().optional().describe('Cursor for next-page pagination'),
|
package/dist/tools/diffusion.js
CHANGED
|
@@ -11,6 +11,8 @@ export function registerDiffusionTools(server, client) {
|
|
|
11
11
|
shortNames: z.array(z.string()).optional().describe('Repository short names'),
|
|
12
12
|
types: z.array(z.string()).optional().describe('VCS types: git, hg, svn'),
|
|
13
13
|
uris: z.array(z.string()).optional().describe('Repository URIs'),
|
|
14
|
+
subscribers: z.array(z.string()).optional().describe('Subscriber user/project PHIDs'),
|
|
15
|
+
spaces: z.array(z.string()).optional().describe('Space PHIDs (for multi-space installations)'),
|
|
14
16
|
query: z.string().optional().describe('Full-text search query'),
|
|
15
17
|
})).optional().describe('Search constraints'),
|
|
16
18
|
attachments: jsonCoerce(z.object({
|
|
@@ -38,6 +40,10 @@ export function registerDiffusionTools(server, client) {
|
|
|
38
40
|
auditors: z.array(z.string()).optional().describe('Auditor user/project PHIDs'),
|
|
39
41
|
responsiblePHIDs: z.array(z.string()).optional().describe('User PHIDs responsible (as author or auditor)'),
|
|
40
42
|
statuses: z.array(z.string()).optional().describe('Audit statuses: none, needs-audit, concern-raised, partially-audited, audited, needs-verification'),
|
|
43
|
+
packages: z.array(z.string()).optional().describe('Owners package PHIDs'),
|
|
44
|
+
unreachable: z.boolean().optional().describe('Include unreachable commits'),
|
|
45
|
+
permanent: z.boolean().optional().describe('Filter by permanent (reachable from any permanent ref) status'),
|
|
46
|
+
ancestorsOf: z.array(z.string()).optional().describe('Find ancestors of these commit identifiers'),
|
|
41
47
|
query: z.string().optional().describe('Full-text search query'),
|
|
42
48
|
})).optional().describe('Search constraints'),
|
|
43
49
|
attachments: jsonCoerce(z.object({
|
package/dist/tools/file.js
CHANGED
|
@@ -20,8 +20,10 @@ export function registerFileTools(server, client) {
|
|
|
20
20
|
phids: z.array(z.string()).optional().describe('File PHIDs'),
|
|
21
21
|
authorPHIDs: z.array(z.string()).optional().describe('Author PHIDs'),
|
|
22
22
|
name: z.string().optional().describe('File name substring search'),
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
createdStart: z.coerce.number().optional().describe('Created after (epoch timestamp)'),
|
|
24
|
+
createdEnd: z.coerce.number().optional().describe('Created before (epoch timestamp)'),
|
|
25
|
+
explicit: z.boolean().optional().describe('Filter to explicitly uploaded files only'),
|
|
26
|
+
subscribers: z.array(z.string()).optional().describe('Subscriber user/project PHIDs'),
|
|
25
27
|
})).optional().describe('Search constraints'),
|
|
26
28
|
order: z.string().optional().describe('Result order'),
|
|
27
29
|
limit: z.coerce.number().max(100).optional().describe('Maximum results (max 100)'),
|
|
@@ -45,6 +45,11 @@ export function registerHarbormasterTools(server, client) {
|
|
|
45
45
|
ids: z.array(z.coerce.number()).optional().describe('Target IDs'),
|
|
46
46
|
phids: z.array(z.string()).optional().describe('Target PHIDs'),
|
|
47
47
|
buildPHIDs: z.array(z.string()).optional().describe('Build PHIDs'),
|
|
48
|
+
statuses: z.array(z.string()).optional().describe('Target statuses'),
|
|
49
|
+
dateCreatedStart: z.coerce.number().optional().describe('Created after (epoch timestamp)'),
|
|
50
|
+
dateCreatedEnd: z.coerce.number().optional().describe('Created before (epoch timestamp)'),
|
|
51
|
+
dateModifiedStart: z.coerce.number().optional().describe('Modified after (epoch timestamp)'),
|
|
52
|
+
dateModifiedEnd: z.coerce.number().optional().describe('Modified before (epoch timestamp)'),
|
|
48
53
|
})).optional().describe('Search constraints'),
|
|
49
54
|
order: z.string().optional().describe('Result order'),
|
|
50
55
|
limit: z.coerce.number().max(100).optional().describe('Maximum results (max 100)'),
|
package/dist/tools/maniphest.js
CHANGED
|
@@ -24,6 +24,9 @@ export function registerManiphestTools(server, client) {
|
|
|
24
24
|
hasParents: z.boolean().optional().describe('Filter to tasks that have open parent tasks'),
|
|
25
25
|
hasSubtasks: z.boolean().optional().describe('Filter to tasks that have open subtasks'),
|
|
26
26
|
spacePHIDs: z.array(z.string()).optional().describe('Filter by Space PHIDs (for multi-space installations)'),
|
|
27
|
+
closedStart: z.coerce.number().optional().describe('Closed after (epoch timestamp)'),
|
|
28
|
+
closedEnd: z.coerce.number().optional().describe('Closed before (epoch timestamp)'),
|
|
29
|
+
closerPHIDs: z.array(z.string()).optional().describe('PHIDs of users who closed the task'),
|
|
27
30
|
})).optional().describe('Search constraints'),
|
|
28
31
|
attachments: jsonCoerce(z.object({
|
|
29
32
|
columns: z.boolean().optional().describe('Include workboard column info'),
|
package/dist/tools/owners.js
CHANGED
|
@@ -16,7 +16,6 @@ export function registerOwnersTools(server, client) {
|
|
|
16
16
|
query: z.string().optional().describe('Full-text search query'),
|
|
17
17
|
})).optional().describe('Search constraints'),
|
|
18
18
|
attachments: jsonCoerce(z.object({
|
|
19
|
-
owners: z.boolean().optional().describe('Include owner details'),
|
|
20
19
|
paths: z.boolean().optional().describe('Include owned paths'),
|
|
21
20
|
})).optional().describe('Data attachments'),
|
|
22
21
|
order: z.string().optional().describe('Result order'),
|
package/dist/tools/paste.js
CHANGED
|
@@ -10,6 +10,8 @@ export function registerPasteTools(server, client) {
|
|
|
10
10
|
authors: z.array(z.string()).optional().describe('Author PHIDs'),
|
|
11
11
|
languages: z.array(z.string()).optional().describe('Languages'),
|
|
12
12
|
statuses: z.array(z.string()).optional().describe('Statuses: active, archived'),
|
|
13
|
+
createdStart: z.coerce.number().optional().describe('Created after (epoch timestamp)'),
|
|
14
|
+
createdEnd: z.coerce.number().optional().describe('Created before (epoch timestamp)'),
|
|
13
15
|
query: z.string().optional().describe('Full-text search query'),
|
|
14
16
|
})).optional().describe('Search constraints'),
|
|
15
17
|
attachments: jsonCoerce(z.object({
|
package/dist/tools/project.js
CHANGED
|
@@ -16,6 +16,10 @@ export function registerProjectTools(server, client) {
|
|
|
16
16
|
icons: z.array(z.string()).optional().describe('Filter by project icon'),
|
|
17
17
|
isMilestone: z.boolean().optional().describe('Filter milestones'),
|
|
18
18
|
isRoot: z.boolean().optional().describe('Filter root projects'),
|
|
19
|
+
minDepth: z.coerce.number().optional().describe('Minimum project depth (0 = root)'),
|
|
20
|
+
maxDepth: z.coerce.number().optional().describe('Maximum project depth'),
|
|
21
|
+
subtypes: z.array(z.string()).optional().describe('Project subtypes'),
|
|
22
|
+
colors: z.array(z.string()).optional().describe('Project colors'),
|
|
19
23
|
query: z.string().optional().describe('Full-text search query'),
|
|
20
24
|
})).optional().describe('Search constraints'),
|
|
21
25
|
attachments: jsonCoerce(z.object({
|
|
@@ -106,9 +110,6 @@ export function registerProjectTools(server, client) {
|
|
|
106
110
|
phids: z.array(z.string()).optional().describe('Column PHIDs'),
|
|
107
111
|
projects: z.array(z.string()).optional().describe('Project PHIDs'),
|
|
108
112
|
})).optional().describe('Search constraints'),
|
|
109
|
-
attachments: jsonCoerce(z.object({
|
|
110
|
-
items: z.boolean().optional().describe('Include items (tasks) in each column'),
|
|
111
|
-
})).optional().describe('Data attachments'),
|
|
112
113
|
order: z.string().optional().describe('Result order'),
|
|
113
114
|
limit: z.coerce.number().max(100).optional().describe('Maximum results (max 100)'),
|
|
114
115
|
after: z.string().optional().describe('Cursor for next-page pagination'),
|
package/dist/tools/user.js
CHANGED
|
@@ -18,6 +18,7 @@ export function registerUserTools(server, client) {
|
|
|
18
18
|
isDisabled: z.boolean().optional().describe('Filter by disabled status'),
|
|
19
19
|
isBot: z.boolean().optional().describe('Filter by bot status'),
|
|
20
20
|
isMailingList: z.boolean().optional().describe('Filter by mailing list status'),
|
|
21
|
+
needsApproval: z.boolean().optional().describe('Filter to users awaiting admin approval'),
|
|
21
22
|
createdStart: z.coerce.number().optional().describe('Created after (epoch timestamp)'),
|
|
22
23
|
createdEnd: z.coerce.number().optional().describe('Created before (epoch timestamp)'),
|
|
23
24
|
query: z.string().optional().describe('Full-text search query'),
|
package/package.json
CHANGED