shipmail-mcp 0.7.3 → 0.7.13
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +30 -19
- package/dist/capabilities.d.ts +9 -3
- package/dist/capabilities.js +35 -16
- package/dist/index.js +1191 -115
- package/dist/server.d.ts +4 -1
- package/dist/server.js +1200 -115
- package/package.json +2 -2
- package/server.json +2 -2
- package/skills/shipmail/SKILL.md +2 -0
- package/smithery.yaml +1 -1
package/dist/server.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ type McpConfig = {
|
|
|
7
7
|
};
|
|
8
8
|
|
|
9
9
|
declare const CROSS_ORGANIZATION_TOOL_NAMES: ReadonlySet<string>;
|
|
10
|
+
declare const CROSS_ORGANIZATION_TOOL_BY_BASE_NAME: ReadonlyMap<string, string>;
|
|
11
|
+
|
|
12
|
+
declare const CONNECTION_SCOPED_RESOURCE_URIS: ReadonlySet<string>;
|
|
10
13
|
|
|
11
14
|
type HostedOrganizationGrant = {
|
|
12
15
|
readonly id: string;
|
|
@@ -16,4 +19,4 @@ type HostedOrganizationGrant = {
|
|
|
16
19
|
};
|
|
17
20
|
declare function createShipmailMcpServer(config: McpConfig, allowedTools: ReadonlySet<string>, organizationGrants?: readonly HostedOrganizationGrant[]): McpServer;
|
|
18
21
|
|
|
19
|
-
export { CROSS_ORGANIZATION_TOOL_NAMES, type HostedOrganizationGrant, createShipmailMcpServer };
|
|
22
|
+
export { CONNECTION_SCOPED_RESOURCE_URIS, CROSS_ORGANIZATION_TOOL_BY_BASE_NAME, CROSS_ORGANIZATION_TOOL_NAMES, type HostedOrganizationGrant, createShipmailMcpServer };
|