@rallycry/conveyor-mcp 4.3.30 → 5.0.1
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-X3EHPZNH.js → chunk-7VH3ULLT.js} +101 -0
- package/dist/cli.js +2813 -304
- package/dist/{connection-CRkBLz5w.d.ts → connection-DtGKRfga.d.ts} +78 -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;
|
|
@@ -607,6 +609,82 @@ declare class ConveyorConnection {
|
|
|
607
609
|
unknownTags?: string[];
|
|
608
610
|
}>;
|
|
609
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>;
|
|
610
688
|
/** Effective account/project/board identity + capabilities for this token. */
|
|
611
689
|
getConnectionContext(projectId?: string): Promise<ConnectionContext>;
|
|
612
690
|
/** Layered verify-by-scope probe (auth → account → project → board →
|
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.1",
|
|
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"
|