@graphai/extra-agents 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/README.md +2 -21
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -19,8 +19,6 @@ import {
19
19
  awesomeChatgptPromptsAgent,
20
20
  braveSearchAgent,
21
21
  browserlessAgent,
22
- mcpResourceAgent,
23
- mcpResourcesAgent,
24
22
  mcpToolsCallAgent,
25
23
  mcpToolsListAgent,
26
24
  pdf2textAgent,
@@ -37,8 +35,6 @@ const agents = {
37
35
  awesomeChatgptPromptsAgent,
38
36
  braveSearchAgent,
39
37
  browserlessAgent,
40
- mcpResourceAgent,
41
- mcpResourcesAgent,
42
38
  mcpToolsCallAgent,
43
39
  mcpToolsListAgent,
44
40
  pdf2textAgent,
@@ -59,8 +55,6 @@ const result = await graph.run();
59
55
  - awesomeChatgptPromptsAgent - awesomeChatgptPrompts Agent
60
56
  - braveSearchAgent - An agent that uses the Brave Search API. https://api-dashboard.search.brave.com/app/documentation/web-search/get-started
61
57
  - browserlessAgent - An agent that uses Browserless.io to fetch web page content with JavaScript execution support for retrieving data from SPAs and dynamic content
62
- - mcpResourceAgent - Model Context Protocol Resource Agent
63
- - mcpResourcesAgent - Model Context Protocol Resources Agent
64
58
  - mcpToolsCallAgent - Model Context Protocol Tools/Call Agent
65
59
  - mcpToolsListAgent - Model Context Protocol Tools/List Agent
66
60
  - pdf2textAgent - Pdf2text Agent
@@ -76,8 +70,6 @@ const result = await graph.run();
76
70
  - [awesomeChatgptPromptsAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/prompt/awesomeChatgptPromptsAgent.md)
77
71
  - [braveSearchAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/braveSearchAgent.md)
78
72
  - [browserlessAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/browserlessAgent.md)
79
- - [mcpResourceAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpResourceAgent.md)
80
- - [mcpResourcesAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpResourcesAgent.md)
81
73
  - [mcpToolsCallAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsCallAgent.md)
82
74
  - [mcpToolsListAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsListAgent.md)
83
75
  - [pdf2textAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/documents/pdf2textAgent.md)
@@ -226,17 +218,6 @@ const result = await graph.run();
226
218
  "debug": true
227
219
  }
228
220
  }
229
- ```
230
-
231
- - mcpResourcesAgent
232
-
233
-
234
-
235
- ```typescript
236
- {
237
- "inputs": {},
238
- "params": {}
239
- }
240
221
  ```
241
222
 
242
223
  - mcpToolsCallAgent
@@ -249,7 +230,7 @@ const result = await graph.run();
249
230
  "tools": {
250
231
  "name": "filesystem--list_directory",
251
232
  "arguments": {
252
- "path": "/home/runner/work/graphai-agents/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
233
+ "path": "/home/runner/work/graphai-agents/graphai-agents/packages/agents/node_modules/@graphai/mcp_agent/lib/../tests/sample"
253
234
  }
254
235
  }
255
236
  },
@@ -264,7 +245,7 @@ const result = await graph.run();
264
245
  "tools": {
265
246
  "name": "filesystem--list_directory",
266
247
  "arguments": {
267
- "path": "/home/runner/work/graphai-agents/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
248
+ "path": "/home/runner/work/graphai-agents/graphai-agents/packages/agents/node_modules/@graphai/mcp_agent/lib/../tests/sample"
268
249
  }
269
250
  }
270
251
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphai/extra-agents",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Extra agents for GraphAI.",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -30,11 +30,11 @@
30
30
  "@graphai/awesome_chatgpt_prompts_agent": "^0.0.1",
31
31
  "@graphai/brave_search_agent": "^2.0.0",
32
32
  "@graphai/browserless_agent": "^2.0.0",
33
- "@graphai/mcp_agent": "^0.0.3",
33
+ "@graphai/mcp_agent": "^0.0.4",
34
34
  "@graphai/pdf2text_agent": "^0.2.0",
35
35
  "@graphai/prompts": "^0.0.1",
36
36
  "@graphai/serper_agent": "^0.0.1",
37
- "@graphai/slack_agent": "^0.0.3",
37
+ "@graphai/slack_agent": "^0.0.4",
38
38
  "@graphai/stt_openai_agent": "^2.0.0",
39
39
  "@graphai/tts_nijivoice_agent": "^2.0.0",
40
40
  "@graphai/tts_openai_agent": "^2.0.0"