solana-agent 20.1.2__tar.gz → 20.1.4__tar.gz

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 (35) hide show
  1. {solana_agent-20.1.2 → solana_agent-20.1.4}/PKG-INFO +42 -1
  2. {solana_agent-20.1.2 → solana_agent-20.1.4}/README.md +41 -0
  3. {solana_agent-20.1.2 → solana_agent-20.1.4}/pyproject.toml +1 -1
  4. {solana_agent-20.1.2 → solana_agent-20.1.4}/LICENSE +0 -0
  5. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/__init__.py +0 -0
  6. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/adapters/llm_adapter.py +0 -0
  8. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/adapters/mongodb_adapter.py +0 -0
  9. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/client/__init__.py +0 -0
  10. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/client/solana_agent.py +0 -0
  11. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/domains/__init__.py +0 -0
  12. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/domains/agent.py +0 -0
  13. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/domains/routing.py +0 -0
  14. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/factories/__init__.py +0 -0
  15. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/factories/agent_factory.py +0 -0
  16. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/services/query.py +0 -0
  35. {solana_agent-20.1.2 → solana_agent-20.1.4}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 20.1.2
3
+ Version: 20.1.4
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -48,6 +48,7 @@ Build your AI business in three lines of code!
48
48
  * Extensible Tooling
49
49
  * Simple Business Definition
50
50
  * Tested & Secure
51
+ * Support for MCP Servers
51
52
  * Built in Python
52
53
  * Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
53
54
 
@@ -61,6 +62,7 @@ Build your AI business in three lines of code!
61
62
  * Powerful tool integration using standard Python packages and/or inline classes
62
63
  * Assigned tools are utilized by agents automatically and effectively
63
64
  * Simple business definition using JSON
65
+ * Ability to access any MCP server via a URL
64
66
 
65
67
  ## Stack
66
68
 
@@ -243,6 +245,7 @@ Plugins like Solana Agent Kit (sakit) integrate automatically with Solana Agent.
243
245
 
244
246
  `pip install sakit`
245
247
 
248
+ #### Internet Search
246
249
  ```python
247
250
  from solana_agent import SolanaAgent
248
251
 
@@ -278,6 +281,44 @@ async for response in solana_agent.process("user123", "What are the latest AI de
278
281
  print(response, end="")
279
282
  ```
280
283
 
284
+ #### MCP
285
+ ```python
286
+ from solana_agent import SolanaAgent
287
+
288
+ config = {
289
+ "openai": {
290
+ "api_key": "your-openai-api-key",
291
+ },
292
+ "tools": {
293
+ "mcp": {
294
+ "server_urls": [
295
+ "http://mcp-server1.com/mcp",
296
+ "http://mcp-server2.com/mcp",
297
+ "http://mcp-server3.com/mcp"
298
+ ]
299
+ }
300
+ },
301
+ "agents": [
302
+ {
303
+ "name": "research_specialist",
304
+ "instructions": "You are an expert researcher who synthesizes complex information clearly.",
305
+ "specialization": "Research and knowledge synthesis",
306
+ "tools": ["mcp"],
307
+ },
308
+ {
309
+ "name": "customer_support",
310
+ "instructions": "You provide friendly, helpful customer support responses.",
311
+ "specialization": "Customer inquiries",
312
+ }
313
+ ],
314
+ }
315
+
316
+ solana_agent = SolanaAgent(config=config)
317
+
318
+ async for response in solana_agent.process("user123", "What are the latest AI developments?"):
319
+ print(response, end="")
320
+ ```
321
+
281
322
  To create a plugin like Solana Agent Kit - read the [code](https://github.com/truemagic-coder/solana-agent-kit)
282
323
 
283
324
  ### Custom Inline Tools
@@ -23,6 +23,7 @@ Build your AI business in three lines of code!
23
23
  * Extensible Tooling
24
24
  * Simple Business Definition
25
25
  * Tested & Secure
26
+ * Support for MCP Servers
26
27
  * Built in Python
27
28
  * Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
28
29
 
@@ -36,6 +37,7 @@ Build your AI business in three lines of code!
36
37
  * Powerful tool integration using standard Python packages and/or inline classes
37
38
  * Assigned tools are utilized by agents automatically and effectively
38
39
  * Simple business definition using JSON
40
+ * Ability to access any MCP server via a URL
39
41
 
40
42
  ## Stack
41
43
 
@@ -218,6 +220,7 @@ Plugins like Solana Agent Kit (sakit) integrate automatically with Solana Agent.
218
220
 
219
221
  `pip install sakit`
220
222
 
223
+ #### Internet Search
221
224
  ```python
222
225
  from solana_agent import SolanaAgent
223
226
 
@@ -253,6 +256,44 @@ async for response in solana_agent.process("user123", "What are the latest AI de
253
256
  print(response, end="")
254
257
  ```
255
258
 
259
+ #### MCP
260
+ ```python
261
+ from solana_agent import SolanaAgent
262
+
263
+ config = {
264
+ "openai": {
265
+ "api_key": "your-openai-api-key",
266
+ },
267
+ "tools": {
268
+ "mcp": {
269
+ "server_urls": [
270
+ "http://mcp-server1.com/mcp",
271
+ "http://mcp-server2.com/mcp",
272
+ "http://mcp-server3.com/mcp"
273
+ ]
274
+ }
275
+ },
276
+ "agents": [
277
+ {
278
+ "name": "research_specialist",
279
+ "instructions": "You are an expert researcher who synthesizes complex information clearly.",
280
+ "specialization": "Research and knowledge synthesis",
281
+ "tools": ["mcp"],
282
+ },
283
+ {
284
+ "name": "customer_support",
285
+ "instructions": "You provide friendly, helpful customer support responses.",
286
+ "specialization": "Customer inquiries",
287
+ }
288
+ ],
289
+ }
290
+
291
+ solana_agent = SolanaAgent(config=config)
292
+
293
+ async for response in solana_agent.process("user123", "What are the latest AI developments?"):
294
+ print(response, end="")
295
+ ```
296
+
256
297
  To create a plugin like Solana Agent Kit - read the [code](https://github.com/truemagic-coder/solana-agent-kit)
257
298
 
258
299
  ### Custom Inline Tools
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "20.1.2"
3
+ version = "20.1.4"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes