@rallycry/conveyor-mcp 4.3.29 → 5.0.0
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/{chunk-BKGMG2T3.js → chunk-2TVN7F5E.js} +95 -0
- package/dist/cli.js +2831 -287
- package/dist/{connection-SVcp2_Qd.d.ts → connection-DtGKRfga.d.ts} +101 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/tunnel-cli.js +1 -1
- package/dist/tunnel.d.ts +2 -1
- package/dist/wait-cli.js +1 -1
- package/dist/wait-runner.d.ts +2 -1
- package/dist/wait.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ListDriveFilesResponse, ReadDriveFileResponse, DriveFileDTO, DeleteDriveFileResponse, ProjectIntegrationsSummary, GaAnalyticsSummaryDTO, ProjectChannelDTO, ReadChannelMessagesResponse, PostChannelMessageResponse, ListMeetingsResponse, MeetingForAgent, ReadMeetingTranscriptResponse } from '@project/shared';
|
|
2
|
+
|
|
1
3
|
interface ConveyorMcpConfig {
|
|
2
4
|
apiUrl: string;
|
|
3
5
|
projectToken: string;
|
|
@@ -260,6 +262,17 @@ interface OnboardingStepReport {
|
|
|
260
262
|
}>;
|
|
261
263
|
checks: OnboardingCheck[];
|
|
262
264
|
}
|
|
265
|
+
/** Result of `set_task_parent` — mirrors the API's `ReparentCardResult`. */
|
|
266
|
+
interface SetTaskParentResult {
|
|
267
|
+
id: string;
|
|
268
|
+
slug: string;
|
|
269
|
+
status: string;
|
|
270
|
+
previousParentTaskId: string | null;
|
|
271
|
+
parentTaskId: string | null;
|
|
272
|
+
parentSlug: string | null;
|
|
273
|
+
/** Conditions reported rather than enforced: the move landed regardless. */
|
|
274
|
+
warnings: string[];
|
|
275
|
+
}
|
|
263
276
|
interface MoveCardResult {
|
|
264
277
|
cardId: string;
|
|
265
278
|
sourceProjectId: string;
|
|
@@ -596,6 +609,82 @@ declare class ConveyorConnection {
|
|
|
596
609
|
unknownTags?: string[];
|
|
597
610
|
}>;
|
|
598
611
|
getProjectSummary(projectId?: string): Promise<unknown>;
|
|
612
|
+
listProjectDriveFiles(params: {
|
|
613
|
+
projectId?: string;
|
|
614
|
+
folderId?: string;
|
|
615
|
+
search?: string;
|
|
616
|
+
limit?: number;
|
|
617
|
+
}): Promise<ListDriveFilesResponse>;
|
|
618
|
+
readProjectDriveFile(params: {
|
|
619
|
+
projectId?: string;
|
|
620
|
+
fileId: string;
|
|
621
|
+
}): Promise<ReadDriveFileResponse>;
|
|
622
|
+
createProjectDriveFile(params: {
|
|
623
|
+
projectId?: string;
|
|
624
|
+
name: string;
|
|
625
|
+
content: string;
|
|
626
|
+
mimeType?: string;
|
|
627
|
+
folderId?: string;
|
|
628
|
+
}): Promise<DriveFileDTO>;
|
|
629
|
+
updateProjectDriveFile(params: {
|
|
630
|
+
projectId?: string;
|
|
631
|
+
fileId: string;
|
|
632
|
+
content: string;
|
|
633
|
+
mimeType?: string;
|
|
634
|
+
}): Promise<DriveFileDTO>;
|
|
635
|
+
deleteProjectDriveFile(params: {
|
|
636
|
+
projectId?: string;
|
|
637
|
+
fileId: string;
|
|
638
|
+
}): Promise<DeleteDriveFileResponse>;
|
|
639
|
+
createProjectDriveFolder(params: {
|
|
640
|
+
projectId?: string;
|
|
641
|
+
name: string;
|
|
642
|
+
folderId?: string;
|
|
643
|
+
}): Promise<DriveFileDTO>;
|
|
644
|
+
/**
|
|
645
|
+
* What this project is connected to, plus its registered work channels.
|
|
646
|
+
* Credential-free — configuration booleans only.
|
|
647
|
+
*/
|
|
648
|
+
listProjectIntegrations(projectId?: string): Promise<ProjectIntegrationsSummary>;
|
|
649
|
+
/** GA4 traffic summary; an unconfigured project answers configured:false. */
|
|
650
|
+
getProjectAnalyticsSummary(params: {
|
|
651
|
+
projectId?: string;
|
|
652
|
+
rangeDays?: number;
|
|
653
|
+
campaign?: string;
|
|
654
|
+
}): Promise<GaAnalyticsSummaryDTO>;
|
|
655
|
+
/** The channels an admin registered as reachable by agents. */
|
|
656
|
+
listProjectChannels(projectId?: string): Promise<ProjectChannelDTO[]>;
|
|
657
|
+
/** Recent messages from a registered channel, fetched live and never stored. */
|
|
658
|
+
readChannelMessages(params: {
|
|
659
|
+
projectId?: string;
|
|
660
|
+
channelId: string;
|
|
661
|
+
limit?: number;
|
|
662
|
+
before?: string;
|
|
663
|
+
after?: string;
|
|
664
|
+
threadTs?: string;
|
|
665
|
+
}): Promise<ReadChannelMessagesResponse>;
|
|
666
|
+
/** Post an attributed message into a channel that granted posting. */
|
|
667
|
+
postChannelMessage(params: {
|
|
668
|
+
projectId?: string;
|
|
669
|
+
channelId: string;
|
|
670
|
+
text: string;
|
|
671
|
+
threadTs?: string;
|
|
672
|
+
}): Promise<PostChannelMessageResponse>;
|
|
673
|
+
listMeetings(params: {
|
|
674
|
+
projectId?: string;
|
|
675
|
+
limit?: number;
|
|
676
|
+
search?: string;
|
|
677
|
+
}): Promise<ListMeetingsResponse>;
|
|
678
|
+
getMeeting(params: {
|
|
679
|
+
projectId?: string;
|
|
680
|
+
meetingId: string;
|
|
681
|
+
}): Promise<MeetingForAgent>;
|
|
682
|
+
readMeetingTranscript(params: {
|
|
683
|
+
projectId?: string;
|
|
684
|
+
meetingId: string;
|
|
685
|
+
offset?: number;
|
|
686
|
+
limit?: number;
|
|
687
|
+
}): Promise<ReadMeetingTranscriptResponse>;
|
|
599
688
|
/** Effective account/project/board identity + capabilities for this token. */
|
|
600
689
|
getConnectionContext(projectId?: string): Promise<ConnectionContext>;
|
|
601
690
|
/** Layered verify-by-scope probe (auth → account → project → board →
|
|
@@ -675,6 +764,18 @@ declare class ConveyorConnection {
|
|
|
675
764
|
id: string;
|
|
676
765
|
slug: string;
|
|
677
766
|
}>;
|
|
767
|
+
/**
|
|
768
|
+
* Move a card under a new parent, or detach it with an explicit null.
|
|
769
|
+
* `parentTaskId` rides the rest-spread rather than a conditional one so a
|
|
770
|
+
* null survives the call — stripping it would silently no-op a detach.
|
|
771
|
+
*/
|
|
772
|
+
setTaskParent(params: {
|
|
773
|
+
projectId?: string;
|
|
774
|
+
taskId: string;
|
|
775
|
+
parentTaskId: string | null;
|
|
776
|
+
ordinal?: number;
|
|
777
|
+
followParentStatus?: boolean;
|
|
778
|
+
}): Promise<SetTaskParentResult>;
|
|
678
779
|
updateSubtask(params: {
|
|
679
780
|
projectId?: string;
|
|
680
781
|
subtaskId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export { A as ActivePtySession, d as ConveyorConnection, e as ConveyorMcpConfig, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-
|
|
1
|
+
export { A as ActivePtySession, d as ConveyorConnection, e as ConveyorMcpConfig, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-DtGKRfga.js';
|
|
2
2
|
export { AttachTunnelOptions, ResolvedPtySession, RunTunnelOptions, TunnelConnection, TunnelHandle, TunnelSession, TunnelTty, WaitForPtySessionOptions, attachTunnel, runTunnel, waitForPtySession } from './tunnel.js';
|
|
3
|
+
import '@project/shared';
|
package/dist/index.js
CHANGED
package/dist/tunnel-cli.js
CHANGED
package/dist/tunnel.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { A as ActivePtySession, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-
|
|
1
|
+
import { A as ActivePtySession, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-DtGKRfga.js';
|
|
2
|
+
import '@project/shared';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* The slice of {@link ConveyorConnection} the tunnel needs. Defined as a
|
package/dist/wait-cli.js
CHANGED
package/dist/wait-runner.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { C as CardCollectionPage, a as CardCollectionDelta } from './connection-
|
|
1
|
+
import { C as CardCollectionPage, a as CardCollectionDelta } from './connection-DtGKRfga.js';
|
|
2
2
|
import { WaitFilter, WaitResult } from './wait.js';
|
|
3
|
+
import '@project/shared';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* `conveyor-wait` runner — the live half of the engine.
|
package/dist/wait.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rallycry/conveyor-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Conveyor MCP server for Claude Code PM integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"test:unit": "vitest run --passWithNoTests"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
39
39
|
"socket.io-client": "^4.8.3",
|
|
40
40
|
"ws": "8.21.3",
|
|
41
41
|
"zod": "^4.0.0"
|