@mindstone-engineering/mcp-server-outreach 0.1.0 → 0.1.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/tools/auth-tools.js +2 -2
- package/dist/tools/prospects.js +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js +1 -1
- package/package.json +1 -1
package/dist/tools/auth-tools.js
CHANGED
|
@@ -14,7 +14,7 @@ WHEN TO USE:
|
|
|
14
14
|
- User asks to connect Outreach
|
|
15
15
|
|
|
16
16
|
After connecting, verify with outreach_list_connected_accounts.`,
|
|
17
|
-
inputSchema: z.object({}),
|
|
17
|
+
inputSchema: z.object({}).strict(),
|
|
18
18
|
annotations: {
|
|
19
19
|
readOnlyHint: false,
|
|
20
20
|
destructiveHint: false,
|
|
@@ -76,7 +76,7 @@ After connecting, verify with outreach_list_connected_accounts.`,
|
|
|
76
76
|
|
|
77
77
|
Call this FIRST before any Outreach operations to verify authentication.
|
|
78
78
|
Returns auth mode, connection status, and account details.`,
|
|
79
|
-
inputSchema: z.object({}),
|
|
79
|
+
inputSchema: z.object({}).strict(),
|
|
80
80
|
annotations: {
|
|
81
81
|
readOnlyHint: true,
|
|
82
82
|
destructiveHint: false,
|
package/dist/tools/prospects.js
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare const OUTREACH_API_BASE = "https://api.outreach.io/api/v2";
|
|
|
3
3
|
export declare const OUTREACH_OAUTH_URL = "https://api.outreach.io/oauth/token";
|
|
4
4
|
export declare const OUTREACH_AUTHORIZE_URL = "https://api.outreach.io/oauth/authorize";
|
|
5
5
|
export declare const SERVER_NAME = "outreach-mcp-server";
|
|
6
|
-
export declare const SERVER_VERSION = "0.1.
|
|
6
|
+
export declare const SERVER_VERSION = "0.1.1";
|
|
7
7
|
export interface BridgeState {
|
|
8
8
|
port: number;
|
|
9
9
|
token: string;
|
package/dist/types.js
CHANGED
|
@@ -3,7 +3,7 @@ export const OUTREACH_API_BASE = 'https://api.outreach.io/api/v2';
|
|
|
3
3
|
export const OUTREACH_OAUTH_URL = 'https://api.outreach.io/oauth/token';
|
|
4
4
|
export const OUTREACH_AUTHORIZE_URL = 'https://api.outreach.io/oauth/authorize';
|
|
5
5
|
export const SERVER_NAME = 'outreach-mcp-server';
|
|
6
|
-
export const SERVER_VERSION = '0.1.
|
|
6
|
+
export const SERVER_VERSION = '0.1.1';
|
|
7
7
|
export class ConnectorError extends Error {
|
|
8
8
|
code;
|
|
9
9
|
resolution;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindstone-engineering/mcp-server-outreach",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Outreach sales engagement MCP server — prospects, sequences, accounts, tasks, and mailings via Outreach API",
|
|
5
5
|
"license": "FSL-1.1-MIT",
|
|
6
6
|
"type": "module",
|