agent-mcp 0.1.0__py3-none-any.whl → 0.1.2__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.
- {agent_mcp-0.1.0.dist-info → agent_mcp-0.1.2.dist-info}/METADATA +13 -12
- agent_mcp-0.1.2.dist-info/RECORD +5 -0
- agent_mcp-0.1.0.dist-info/RECORD +0 -5
- {agent_mcp-0.1.0.dist-info → agent_mcp-0.1.2.dist-info}/WHEEL +0 -0
- {agent_mcp-0.1.0.dist-info → agent_mcp-0.1.2.dist-info}/entry_points.txt +0 -0
- {agent_mcp-0.1.0.dist-info → agent_mcp-0.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A bridge agent to enable agents with Model Context Protocol capabilities to be added to a Multi-agent Collaboration Network (MCN) to run on a Multi-agent Collaboration Platform (MCP)
|
|
5
|
-
Home-page: https://github.com/
|
|
6
|
-
Author:
|
|
5
|
+
Home-page: https://github.com/grupa-ai/agent-mcp
|
|
6
|
+
Author: GrupaAI
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
+
Project-URL: Homepage, https://github.com/grupa-ai/agent-mcp
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -52,17 +52,18 @@ class MyAgent:
|
|
|
52
52
|
|
|
53
53
|
## What is AgentMCP?
|
|
54
54
|
|
|
55
|
-
AgentMCP is a revolutionary Multi-agent Collaboration Platform (MCP) that implements the Model Context Protocol (MCP) to enable seamless collaboration between AI agents. With a single decorator, developers can transform any agent into an MCP-compatible agent that can participate in the Multi-
|
|
55
|
+
AgentMCP is a revolutionary Multi-agent Collaboration Platform (MCP) that implements the Model Context Protocol (MCP) to enable seamless collaboration between AI agents. With a single decorator, developers can transform any agent into an MCP-compatible agent that can participate in the Multi-Agent Collaboration Network (MACNet).
|
|
56
56
|
|
|
57
57
|
### 🎯 One Decorator = Infinite Possibilities
|
|
58
58
|
|
|
59
|
-
When you add `@mcp_agent`, your agent instantly becomes:
|
|
60
|
-
|
|
59
|
+
When you add `@mcp_agent`, your agent instantly becomes an Agent with MCP App, Client and Server Capabilities :
|
|
60
|
+
|
|
61
|
+
- 🌐 Connected to the Multi-Agent Collaboration Network (MACNet)
|
|
61
62
|
- 🤝 Ready to work with any other agent on the network
|
|
62
63
|
- 🔌 Framework-agnostic (works with Langchain, CrewAI, Autogen, or any custom implementation)
|
|
63
64
|
- 🧠 Empowered to communicate, share context, and collaborate with specialized agents globally
|
|
64
65
|
|
|
65
|
-
No complex setup. No infrastructure headaches. Just one line of code to join the world's
|
|
66
|
+
No complex setup. No infrastructure headaches. Just one line of code to join the world's first AI multi-agent collaboration network (MAC-Network)!
|
|
66
67
|
|
|
67
68
|
### 💡 It's Like Uber for AI Agents
|
|
68
69
|
|
|
@@ -180,7 +181,7 @@ class MyMLAgent:
|
|
|
180
181
|
def predict(self, data):
|
|
181
182
|
return self.model.predict(data)
|
|
182
183
|
|
|
183
|
-
# Add one line to join the network
|
|
184
|
+
# Add one line to join the MAC network
|
|
184
185
|
@mcp_agent(name="MLPredictor")
|
|
185
186
|
class NetworkEnabledMLAgent(MyMLAgent):
|
|
186
187
|
pass # That's it! All methods become available to other agents
|
|
@@ -202,7 +203,7 @@ results = await my_agent.collaborate({
|
|
|
202
203
|
|
|
203
204
|
## 🔗 Network API
|
|
204
205
|
|
|
205
|
-
### 🌐 Global Agent Network
|
|
206
|
+
### 🌐 Global Agent Network (Multi-Agent Collaboration Network aka MAC Network or MacNet)
|
|
206
207
|
|
|
207
208
|
Your agent automatically joins our hosted network at `https://mcp-server-ixlfhxquwq-ew.a.run.app`
|
|
208
209
|
|
|
@@ -248,7 +249,7 @@ All of this happens automatically when you use the `@mcp_agent` decorator!
|
|
|
248
249
|
|
|
249
250
|
## 🏛 Architecture
|
|
250
251
|
|
|
251
|
-
### 🌐 The Network
|
|
252
|
+
### 🌐 The MAC Network
|
|
252
253
|
|
|
253
254
|
```mermaid
|
|
254
255
|
graph TD
|
|
@@ -403,7 +404,7 @@ Run `python mcp_features_demo.py` to see a step-by-step demonstration of all MCP
|
|
|
403
404
|
|
|
404
405
|
This is the best example to start with to understand the core capabilities of MCPAgent.
|
|
405
406
|
|
|
406
|
-
### 2. Agent Network
|
|
407
|
+
### 2. The Internet of AI Agents (Agent Network)
|
|
407
408
|
|
|
408
409
|
Run `python agent_network_example.py` to start an interactive agent network example:
|
|
409
410
|
- Simulates a social network of agents
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
agent_mcp-0.1.2.dist-info/METADATA,sha256=2d4Fb5Dn1w_T2rAzGbejRkBgTgDx8OVZNqMI8quDX1Q,14495
|
|
2
|
+
agent_mcp-0.1.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
3
|
+
agent_mcp-0.1.2.dist-info/entry_points.txt,sha256=6wJ3TtpqqkX4cL5kz1ZUCc7f8xUI7bUbDk4oSXMQswE,61
|
|
4
|
+
agent_mcp-0.1.2.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
agent_mcp-0.1.2.dist-info/RECORD,,
|
agent_mcp-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
agent_mcp-0.1.0.dist-info/METADATA,sha256=NEQQA5P-eE3oo2ncarW9OGO1LQREM-SjmJN5VusVrRc,14325
|
|
2
|
-
agent_mcp-0.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
3
|
-
agent_mcp-0.1.0.dist-info/entry_points.txt,sha256=6wJ3TtpqqkX4cL5kz1ZUCc7f8xUI7bUbDk4oSXMQswE,61
|
|
4
|
-
agent_mcp-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
-
agent_mcp-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|