@assemblyline-agents/arcads 5.0.10 → 6.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/README.md +4 -9
- package/ai.assemblyline/connections/arcads.json +45 -0
- package/ai.assemblyline/index.cjs +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
- package/plugin.json +11 -0
package/README.md
CHANGED
|
@@ -28,15 +28,10 @@ Assembly Line's normal connection callback URL.
|
|
|
28
28
|
assembly-line add arcads agent
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
The
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
```ts
|
|
36
|
-
import { defineArcadsConnection } from "@assemblyline-agents/arcads";
|
|
37
|
-
|
|
38
|
-
export default defineArcadsConnection({ access: "approval-required" });
|
|
39
|
-
```
|
|
31
|
+
The selected plugin enables its reviewed Arcads tools. Change authority only
|
|
32
|
+
through `plugins.arcads.connections.arcads.approval` or `disable` in
|
|
33
|
+
`agent.md`; use the provider action names shown by
|
|
34
|
+
`assembly-line capabilities agent`.
|
|
40
35
|
|
|
41
36
|
The deployment owner supplies the Arcads account, subscription, OAuth client,
|
|
42
37
|
credit policy, and callback URL. OAuth tokens stay in Assembly Line's connection
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"kind": "arcads",
|
|
3
|
+
"role": "connection",
|
|
4
|
+
"packageName": "@assemblyline-agents/arcads",
|
|
5
|
+
"helper": "defineArcadsConnection",
|
|
6
|
+
"protocol": "mcp",
|
|
7
|
+
"transport": "http",
|
|
8
|
+
"provider": "arcads",
|
|
9
|
+
"description": "Arcads media analysis, generation, and editing through the official hosted MCP server.",
|
|
10
|
+
"defaultUrl": "https://mcp.arcads.ai",
|
|
11
|
+
"capabilities": [
|
|
12
|
+
"mcp",
|
|
13
|
+
"oauth",
|
|
14
|
+
"live-tools",
|
|
15
|
+
"streamable-http"
|
|
16
|
+
],
|
|
17
|
+
"scopes": [
|
|
18
|
+
"mcp",
|
|
19
|
+
"offline_access"
|
|
20
|
+
],
|
|
21
|
+
"subject": "user",
|
|
22
|
+
"readToolPatterns": [
|
|
23
|
+
"regex:^arcads_(get_(?!upload_url$)|list|search|watch)"
|
|
24
|
+
],
|
|
25
|
+
"writeToolPatterns": [
|
|
26
|
+
"arcads_get_upload_url",
|
|
27
|
+
"regex:^arcads_(?!get_(?!upload_url$)|list|search|watch).+"
|
|
28
|
+
],
|
|
29
|
+
"setup": [
|
|
30
|
+
{
|
|
31
|
+
"kind": "connection",
|
|
32
|
+
"name": "arcads-oauth-configuration",
|
|
33
|
+
"required": true,
|
|
34
|
+
"message": "Register an OAuth client with https://api.arcads.ai/oauth/register, set ARCADS_MCP_CLIENT_ID, and register the Assembly Line connection callback URL. Arcads generation and editing consume account credits."
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"requiredConfig": [
|
|
38
|
+
"ARCADS_MCP_CLIENT_ID"
|
|
39
|
+
],
|
|
40
|
+
"optionalConfig": [
|
|
41
|
+
"ARCADS_MCP_REDIRECT_URI"
|
|
42
|
+
],
|
|
43
|
+
"requiredCredentials": [],
|
|
44
|
+
"optionalCredentials": []
|
|
45
|
+
}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,EAChC,MAAM,2BAA2B,CAAC;AAInC,MAAM,WAAW,uBAAwB,SAAQ,IAAI,CAAC,0BAA0B,EAAE,MAAM,CAAC;IACvF,IAAI,CAAC,EAAE,wBAAwB,GAAG,KAAK,CAAC;CACzC;AAED,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,0IAMtE;AAED,eAAO,MAAM,kBAAkB,kDAA0C,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import connectionContract_arcads from "../ai.assemblyline/connections/arcads.json" with { type: "json" };
|
|
2
|
+
import { defineMcpPluginConnection, defineOAuthAuthorization, definePlugin } from "@assemblyline-agents/core";
|
|
3
|
+
const PLUGIN = connectionContract_arcads;
|
|
3
4
|
export function defineArcadsConnection(options) {
|
|
4
5
|
const { auth, ...connection } = options;
|
|
5
6
|
return defineMcpPluginConnection(PLUGIN, {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,yBAAyB,MAAM,4CAA4C,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AACzG,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,YAAY,EAGb,MAAM,2BAA2B,CAAC;AAEnC,MAAM,MAAM,GAAG,yBAAgE,CAAC;AAMhF,MAAM,UAAU,sBAAsB,CAAC,OAAgC;IACrE,MAAM,EAAE,IAAI,EAAE,GAAG,UAAU,EAAE,GAAG,OAAO,CAAC;IACxC,OAAO,yBAAyB,CAAC,MAAM,EAAE;QACvC,GAAG,UAAU;QACb,IAAI,EAAE,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,WAAW,EAAE;KACrD,CAAC,CAAC;AACL,CAAC;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAE1E,SAAS,WAAW;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE;QACpB,MAAM,QAAQ,GAAG,MAAM,CAAC,oBAAoB,EAAE,IAAI,EAAE,CAAC;QACrD,MAAM,WAAW,GAAG,MAAM,CAAC,uBAAuB,EAAE,IAAI,EAAE,CAAC;QAC3D,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;QACjE,CAAC;QACD,OAAO,wBAAwB,CAAC;YAC9B,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,uCAAuC;YACrD,QAAQ,EAAE,mCAAmC;YAC7C,QAAQ;YACR,MAAM,EAAE,CAAC,KAAK,EAAE,gBAAgB,CAAC;YACjC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACvC,mBAAmB,EAAE,EAAE,QAAQ,EAAE,uBAAuB,EAAE;YAC1D,WAAW,EAAE,EAAE,QAAQ,EAAE,uBAAuB,EAAE;YAClD,IAAI,EAAE,IAAI;SACX,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@assemblyline-agents/arcads",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,11 +9,13 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@assemblyline-agents/core": "
|
|
12
|
+
"@assemblyline-agents/core": "6.0.0"
|
|
13
13
|
},
|
|
14
14
|
"description": "Official Assembly Line connection plugin for the Arcads hosted MCP server.",
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"plugin.json",
|
|
18
|
+
"ai.assemblyline"
|
|
17
19
|
],
|
|
18
20
|
"engines": {
|
|
19
21
|
"node": ">=22.19.0"
|
package/plugin.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
|
3
|
+
"name": "arcads",
|
|
4
|
+
"version": "6.0.0",
|
|
5
|
+
"description": "Official Assembly Line connection plugin for the Arcads hosted MCP server.",
|
|
6
|
+
"extensions": {
|
|
7
|
+
"ai.assemblyline": {
|
|
8
|
+
"entry": "./ai.assemblyline/index.cjs"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|