@graphai/extra-agents 0.0.6 → 0.0.7
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 +21 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -19,6 +19,8 @@ import {
|
|
|
19
19
|
awesomeChatgptPromptsAgent,
|
|
20
20
|
braveSearchAgent,
|
|
21
21
|
browserlessAgent,
|
|
22
|
+
mcpResourceAgent,
|
|
23
|
+
mcpResourcesAgent,
|
|
22
24
|
mcpToolsCallAgent,
|
|
23
25
|
mcpToolsListAgent,
|
|
24
26
|
pdf2textAgent,
|
|
@@ -35,6 +37,8 @@ const agents = {
|
|
|
35
37
|
awesomeChatgptPromptsAgent,
|
|
36
38
|
braveSearchAgent,
|
|
37
39
|
browserlessAgent,
|
|
40
|
+
mcpResourceAgent,
|
|
41
|
+
mcpResourcesAgent,
|
|
38
42
|
mcpToolsCallAgent,
|
|
39
43
|
mcpToolsListAgent,
|
|
40
44
|
pdf2textAgent,
|
|
@@ -55,6 +59,8 @@ const result = await graph.run();
|
|
|
55
59
|
- awesomeChatgptPromptsAgent - awesomeChatgptPrompts Agent
|
|
56
60
|
- braveSearchAgent - An agent that uses the Brave Search API. https://api-dashboard.search.brave.com/app/documentation/web-search/get-started
|
|
57
61
|
- 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
|
|
58
64
|
- mcpToolsCallAgent - Model Context Protocol Tools/Call Agent
|
|
59
65
|
- mcpToolsListAgent - Model Context Protocol Tools/List Agent
|
|
60
66
|
- pdf2textAgent - Pdf2text Agent
|
|
@@ -70,6 +76,8 @@ const result = await graph.run();
|
|
|
70
76
|
- [awesomeChatgptPromptsAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/prompt/awesomeChatgptPromptsAgent.md)
|
|
71
77
|
- [braveSearchAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/braveSearchAgent.md)
|
|
72
78
|
- [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)
|
|
73
81
|
- [mcpToolsCallAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsCallAgent.md)
|
|
74
82
|
- [mcpToolsListAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsListAgent.md)
|
|
75
83
|
- [pdf2textAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/documents/pdf2textAgent.md)
|
|
@@ -77,8 +85,8 @@ const result = await graph.run();
|
|
|
77
85
|
- [serperAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/serperAgent.md)
|
|
78
86
|
- [slackAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/slackAgent.md)
|
|
79
87
|
- [sttOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/voice/sttOpenaiAgent.md)
|
|
80
|
-
- [ttsNijivoiceAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/
|
|
81
|
-
- [ttsOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/
|
|
88
|
+
- [ttsNijivoiceAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/voice/ttsNijivoiceAgent.md)
|
|
89
|
+
- [ttsOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/voice/ttsOpenaiAgent.md)
|
|
82
90
|
|
|
83
91
|
### Input/Params example
|
|
84
92
|
- arxivAgent
|
|
@@ -184,6 +192,15 @@ const result = await graph.run();
|
|
|
184
192
|
"debug": true
|
|
185
193
|
}
|
|
186
194
|
}
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
- mcpResourcesAgent
|
|
198
|
+
|
|
199
|
+
```typescript
|
|
200
|
+
{
|
|
201
|
+
"inputs": {},
|
|
202
|
+
"params": {}
|
|
203
|
+
}
|
|
187
204
|
```
|
|
188
205
|
|
|
189
206
|
- mcpToolsCallAgent
|
|
@@ -194,7 +211,7 @@ const result = await graph.run();
|
|
|
194
211
|
"tools": {
|
|
195
212
|
"name": "filesystem--list_directory",
|
|
196
213
|
"arguments": {
|
|
197
|
-
"path": "/
|
|
214
|
+
"path": "/home/runner/work/graphai-agents/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
|
|
198
215
|
}
|
|
199
216
|
}
|
|
200
217
|
},
|
|
@@ -209,7 +226,7 @@ const result = await graph.run();
|
|
|
209
226
|
"tools": {
|
|
210
227
|
"name": "filesystem--list_directory",
|
|
211
228
|
"arguments": {
|
|
212
|
-
"path": "/
|
|
229
|
+
"path": "/home/runner/work/graphai-agents/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
|
|
213
230
|
}
|
|
214
231
|
}
|
|
215
232
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphai/extra-agents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Extra agents for GraphAI.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@graphai/prompts": "^0.0.1",
|
|
36
36
|
"@graphai/serper_agent": "^0.0.1",
|
|
37
37
|
"@graphai/slack_agent": "^0.0.3",
|
|
38
|
-
"@graphai/stt_openai_agent": "^0.0
|
|
39
|
-
"@graphai/tts_nijivoice_agent": "^0.0
|
|
40
|
-
"@graphai/tts_openai_agent": "^0.0
|
|
38
|
+
"@graphai/stt_openai_agent": "^2.0.0",
|
|
39
|
+
"@graphai/tts_nijivoice_agent": "^2.0.0",
|
|
40
|
+
"@graphai/tts_openai_agent": "^2.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {},
|
|
43
43
|
"types": "./lib/index.d.ts",
|