solana-agent 20.1.2__py3-none-any.whl → 20.1.3__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 20.1.2
3
+ Version: 20.1.3
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
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 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
@@ -29,7 +29,7 @@ solana_agent/services/__init__.py,sha256=ab_NXJmwYUCmCrCzuTlZ47bJZINW0Y0F5jfQ9Oo
29
29
  solana_agent/services/agent.py,sha256=MdSPIC81JNuP2hfzXNGWOnRfe7OxwYHgDVZAphVCCo8,16450
30
30
  solana_agent/services/query.py,sha256=QduAeiltFTwNDlAbC_emu544U4XGNioj-OauRGt9HSY,11070
31
31
  solana_agent/services/routing.py,sha256=PMCSG5m3uLMaHMj3dxNvNfcFZaeaDi7kMr7AEBCzwDE,6499
32
- solana_agent-20.1.2.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
33
- solana_agent-20.1.2.dist-info/METADATA,sha256=y7oFOfQr9TJPAAHWslK14bhQkbtER9y4V1wMIaVvagY,13966
34
- solana_agent-20.1.2.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
35
- solana_agent-20.1.2.dist-info/RECORD,,
32
+ solana_agent-20.1.3.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
33
+ solana_agent-20.1.3.dist-info/METADATA,sha256=NCCIvPbuwEEh8AdJ9pHx4ZcsQmWCXFgEUYctcqAfVNE,15068
34
+ solana_agent-20.1.3.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
35
+ solana_agent-20.1.3.dist-info/RECORD,,