@polpo-ai/connectors 0.15.4
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/LICENSE +13 -0
- package/README.md +14 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +184 -0
- package/dist/index.js.map +1 -0
- package/package.json +57 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2026-present Lumea Labs
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# @polpo-ai/connectors
|
|
2
|
+
|
|
3
|
+
Curated connector provider definitions for Polpo Connect.
|
|
4
|
+
|
|
5
|
+
The initial catalog includes:
|
|
6
|
+
|
|
7
|
+
- API Key
|
|
8
|
+
- GitHub
|
|
9
|
+
- Slack
|
|
10
|
+
- Google Drive
|
|
11
|
+
- MCP Server URL
|
|
12
|
+
- a factory for custom OAuth2 connectors
|
|
13
|
+
|
|
14
|
+
These definitions describe auth mode, scopes, agent-facing actions, and triggers. They do not execute provider API calls by themselves; execution belongs to connector tools/runtime integrations.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ConnectorProviderDefinition } from "@polpo-ai/connect";
|
|
2
|
+
export declare const apiKeyConnector: ConnectorProviderDefinition;
|
|
3
|
+
export declare const githubConnector: ConnectorProviderDefinition;
|
|
4
|
+
export declare const slackConnector: ConnectorProviderDefinition;
|
|
5
|
+
export declare const googleDriveConnector: ConnectorProviderDefinition;
|
|
6
|
+
export declare const mcpUrlConnector: ConnectorProviderDefinition;
|
|
7
|
+
export declare function createGenericOAuthConnector(input: {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
authorizationUrl: string;
|
|
11
|
+
tokenUrl: string;
|
|
12
|
+
revokeUrl?: string;
|
|
13
|
+
defaultScopes?: string[];
|
|
14
|
+
description?: string;
|
|
15
|
+
}): ConnectorProviderDefinition;
|
|
16
|
+
export declare const defaultConnectors: ConnectorProviderDefinition[];
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mBAAmB,CAAC;AAErE,eAAO,MAAM,eAAe,EAAE,2BAkB7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,2BAyC7B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,2BAkC5B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,2BAkClC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,2BA6B7B,CAAC;AAEF,wBAAgB,2BAA2B,CAAC,KAAK,EAAE;IACjD,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,GAAG,2BAA2B,CAc9B;AAED,eAAO,MAAM,iBAAiB,EAAE,2BAA2B,EAM1D,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
export const apiKeyConnector = {
|
|
2
|
+
id: "api_key",
|
|
3
|
+
name: "API Key",
|
|
4
|
+
description: "Store a project or user API key and expose it to approved connector tools without showing it to the model.",
|
|
5
|
+
auth: {
|
|
6
|
+
type: "api_key",
|
|
7
|
+
defaultScopes: ["use"],
|
|
8
|
+
},
|
|
9
|
+
scopes: [{ id: "use", label: "Use API key" }],
|
|
10
|
+
actions: [
|
|
11
|
+
{
|
|
12
|
+
id: "api_key_get_token",
|
|
13
|
+
label: "Get runtime token",
|
|
14
|
+
description: "Resolve the stored API key for server-side tool execution.",
|
|
15
|
+
scopes: ["use"],
|
|
16
|
+
risk: "read",
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
};
|
|
20
|
+
export const githubConnector = {
|
|
21
|
+
id: "github",
|
|
22
|
+
name: "GitHub",
|
|
23
|
+
description: "Read repositories, inspect issues and pull requests, and create issues through scoped GitHub OAuth.",
|
|
24
|
+
auth: {
|
|
25
|
+
type: "oauth2",
|
|
26
|
+
authorizationUrl: "https://github.com/login/oauth/authorize",
|
|
27
|
+
tokenUrl: "https://github.com/login/oauth/access_token",
|
|
28
|
+
defaultScopes: ["read:user", "repo"],
|
|
29
|
+
},
|
|
30
|
+
scopes: [
|
|
31
|
+
{ id: "read:user", label: "Read user profile" },
|
|
32
|
+
{ id: "repo", label: "Repository read/write", dangerous: true },
|
|
33
|
+
],
|
|
34
|
+
actions: [
|
|
35
|
+
{
|
|
36
|
+
id: "github_list_repos",
|
|
37
|
+
label: "List repositories",
|
|
38
|
+
description: "List repositories visible to the connected account.",
|
|
39
|
+
scopes: ["repo"],
|
|
40
|
+
risk: "read",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
id: "github_create_issue",
|
|
44
|
+
label: "Create issue",
|
|
45
|
+
description: "Create an issue in an authorized repository.",
|
|
46
|
+
scopes: ["repo"],
|
|
47
|
+
risk: "write",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
id: "github_read_file",
|
|
51
|
+
label: "Read file",
|
|
52
|
+
description: "Read a file from an authorized repository.",
|
|
53
|
+
scopes: ["repo"],
|
|
54
|
+
risk: "read",
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
triggers: [
|
|
58
|
+
{ id: "github_issue_opened", label: "Issue opened", scopes: ["repo"] },
|
|
59
|
+
{ id: "github_pr_opened", label: "Pull request opened", scopes: ["repo"] },
|
|
60
|
+
],
|
|
61
|
+
};
|
|
62
|
+
export const slackConnector = {
|
|
63
|
+
id: "slack",
|
|
64
|
+
name: "Slack",
|
|
65
|
+
description: "Read channels and send messages through scoped Slack OAuth.",
|
|
66
|
+
auth: {
|
|
67
|
+
type: "oauth2",
|
|
68
|
+
authorizationUrl: "https://slack.com/oauth/v2/authorize",
|
|
69
|
+
tokenUrl: "https://slack.com/api/oauth.v2.access",
|
|
70
|
+
defaultScopes: ["channels:read", "chat:write"],
|
|
71
|
+
},
|
|
72
|
+
scopes: [
|
|
73
|
+
{ id: "channels:read", label: "Read channels" },
|
|
74
|
+
{ id: "chat:write", label: "Send messages", dangerous: true },
|
|
75
|
+
{ id: "users:read", label: "Read users" },
|
|
76
|
+
],
|
|
77
|
+
actions: [
|
|
78
|
+
{
|
|
79
|
+
id: "slack_list_channels",
|
|
80
|
+
label: "List channels",
|
|
81
|
+
description: "List channels available to the connected Slack installation.",
|
|
82
|
+
scopes: ["channels:read"],
|
|
83
|
+
risk: "read",
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
id: "slack_send_message",
|
|
87
|
+
label: "Send message",
|
|
88
|
+
description: "Send a message to an authorized Slack channel.",
|
|
89
|
+
scopes: ["chat:write"],
|
|
90
|
+
risk: "write",
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
triggers: [
|
|
94
|
+
{ id: "slack_message_posted", label: "Message posted", scopes: ["channels:read"] },
|
|
95
|
+
],
|
|
96
|
+
};
|
|
97
|
+
export const googleDriveConnector = {
|
|
98
|
+
id: "google_drive",
|
|
99
|
+
name: "Google Drive",
|
|
100
|
+
description: "Search and read Drive files through scoped Google OAuth.",
|
|
101
|
+
auth: {
|
|
102
|
+
type: "oauth2",
|
|
103
|
+
authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
|
|
104
|
+
tokenUrl: "https://oauth2.googleapis.com/token",
|
|
105
|
+
defaultScopes: ["https://www.googleapis.com/auth/drive.readonly"],
|
|
106
|
+
extraAuthorizeParams: {
|
|
107
|
+
access_type: "offline",
|
|
108
|
+
prompt: "consent",
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
scopes: [
|
|
112
|
+
{ id: "https://www.googleapis.com/auth/drive.readonly", label: "Read Drive files" },
|
|
113
|
+
{ id: "https://www.googleapis.com/auth/drive.file", label: "Create and edit selected Drive files", dangerous: true },
|
|
114
|
+
],
|
|
115
|
+
actions: [
|
|
116
|
+
{
|
|
117
|
+
id: "drive_search_files",
|
|
118
|
+
label: "Search files",
|
|
119
|
+
description: "Search files in the connected Google Drive.",
|
|
120
|
+
scopes: ["https://www.googleapis.com/auth/drive.readonly"],
|
|
121
|
+
risk: "read",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: "drive_read_file",
|
|
125
|
+
label: "Read file",
|
|
126
|
+
description: "Read an authorized file from Google Drive.",
|
|
127
|
+
scopes: ["https://www.googleapis.com/auth/drive.readonly"],
|
|
128
|
+
risk: "read",
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
};
|
|
132
|
+
export const mcpUrlConnector = {
|
|
133
|
+
id: "mcp_url",
|
|
134
|
+
name: "MCP Server URL",
|
|
135
|
+
description: "Connect a remote MCP server and expose discovered tools through Polpo permissions and traces.",
|
|
136
|
+
auth: {
|
|
137
|
+
type: "mcp",
|
|
138
|
+
auth: "bearer",
|
|
139
|
+
defaultScopes: ["tools:read", "tools:call"],
|
|
140
|
+
},
|
|
141
|
+
scopes: [
|
|
142
|
+
{ id: "tools:read", label: "Discover tools" },
|
|
143
|
+
{ id: "tools:call", label: "Call tools", dangerous: true },
|
|
144
|
+
],
|
|
145
|
+
actions: [
|
|
146
|
+
{
|
|
147
|
+
id: "mcp_discover_tools",
|
|
148
|
+
label: "Discover MCP tools",
|
|
149
|
+
description: "List tools exposed by the connected MCP server.",
|
|
150
|
+
scopes: ["tools:read"],
|
|
151
|
+
risk: "read",
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
id: "mcp_call_tool",
|
|
155
|
+
label: "Call MCP tool",
|
|
156
|
+
description: "Call an allowlisted tool on the connected MCP server.",
|
|
157
|
+
scopes: ["tools:call"],
|
|
158
|
+
risk: "write",
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
};
|
|
162
|
+
export function createGenericOAuthConnector(input) {
|
|
163
|
+
return {
|
|
164
|
+
id: input.id,
|
|
165
|
+
name: input.name,
|
|
166
|
+
description: input.description ?? "Custom OAuth2 connector.",
|
|
167
|
+
allowCustomScopes: true,
|
|
168
|
+
auth: {
|
|
169
|
+
type: "oauth2",
|
|
170
|
+
authorizationUrl: input.authorizationUrl,
|
|
171
|
+
tokenUrl: input.tokenUrl,
|
|
172
|
+
revokeUrl: input.revokeUrl,
|
|
173
|
+
defaultScopes: input.defaultScopes,
|
|
174
|
+
},
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
export const defaultConnectors = [
|
|
178
|
+
apiKeyConnector,
|
|
179
|
+
githubConnector,
|
|
180
|
+
slackConnector,
|
|
181
|
+
googleDriveConnector,
|
|
182
|
+
mcpUrlConnector,
|
|
183
|
+
];
|
|
184
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polpo-ai/connectors",
|
|
3
|
+
"version": "0.15.4",
|
|
4
|
+
"description": "Curated connector provider definitions for Polpo Connect",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"sideEffects": false,
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@polpo-ai/connect": "0.15.4"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"typescript": "^5.7.3",
|
|
24
|
+
"vitest": "^3.0.4"
|
|
25
|
+
},
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"polpo",
|
|
29
|
+
"connectors",
|
|
30
|
+
"oauth",
|
|
31
|
+
"github",
|
|
32
|
+
"slack",
|
|
33
|
+
"google-drive",
|
|
34
|
+
"mcp"
|
|
35
|
+
],
|
|
36
|
+
"author": "OpenPolpo Contributors",
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18.0.0"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/lumea-labs/polpo.git",
|
|
46
|
+
"directory": "packages/connectors"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/lumea-labs/polpo/tree/main/packages/connectors",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/lumea-labs/polpo/issues"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsc",
|
|
54
|
+
"dev": "tsc --watch",
|
|
55
|
+
"test": "vitest run"
|
|
56
|
+
}
|
|
57
|
+
}
|