agent-mcp 0.1.5__tar.gz → 0.1.6__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 (84) hide show
  1. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/PKG-INFO +9 -4
  2. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/README.md +8 -3
  3. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/__init__.py +1 -1
  4. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/pyproject.toml +1 -1
  5. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/setup.py +1 -1
  6. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/IMPLEMENTATION_STATUS.md +0 -0
  7. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/MANIFEST.in +0 -0
  8. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/PYPI_PUBLISHING.md +0 -0
  9. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/QUICKSTART.md +0 -0
  10. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/SETUPUP_GUIDE.md +0 -0
  11. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/a2a_protocol.py +0 -0
  12. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/agent_lightning_library.py +0 -0
  13. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/camel_mcp_adapter.py +0 -0
  14. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/claude_mcp_adapter.py +0 -0
  15. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/cli.py +0 -0
  16. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/crewai_mcp_adapter.py +0 -0
  17. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/enhanced_mcp_agent.py +0 -0
  18. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/google_ai_mcp_adapter.py +0 -0
  19. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/heterogeneous_group_chat.py +0 -0
  20. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/langchain_mcp_adapter.py +0 -0
  21. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/langgraph_mcp_adapter.py +0 -0
  22. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/llamaindex_mcp_adapter.py +0 -0
  23. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_agent.py +0 -0
  24. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_decorator.py +0 -0
  25. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_langgraph.py +0 -0
  26. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_transaction.py +0 -0
  27. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_transport.py +0 -0
  28. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/mcp_transport_enhanced.py +0 -0
  29. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/microsoft_agent_framework.py +0 -0
  30. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/missing_frameworks.py +0 -0
  31. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/openapi_protocol.py +0 -0
  32. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/payments.py +0 -0
  33. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/proxy_agent.py +0 -0
  34. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/pydantic_ai_mcp_adapter.py +0 -0
  35. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/registry.py +0 -0
  36. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp/security.py +0 -0
  37. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/agent_mcp.egg-info/SOURCES.txt +0 -0
  38. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/conversation_logs.txt +0 -0
  39. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/__init__.py +0 -0
  40. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/basic/__init__.py +0 -0
  41. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/basic/framework_examples.py +0 -0
  42. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/basic/langchain_camel_demo.py +0 -0
  43. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/basic/simple_chat.py +0 -0
  44. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/basic/simple_integration_example.py +0 -0
  45. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/collaboration/collaborative_task_example.py +0 -0
  46. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/collaboration/group_chat_example.py +0 -0
  47. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/collaboration/simplified_crewai_example.py +0 -0
  48. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/comprehensive_framework_demo.py +0 -0
  49. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/langgraph/autonomous_langgraph_network.py +0 -0
  50. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/langgraph/langgraph_agent_network.py +0 -0
  51. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/langgraph/langgraph_collaborative_task.py +0 -0
  52. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/langgraph/langgraph_example.py +0 -0
  53. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/langgraph/run_langgraph_examples.py +0 -0
  54. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/network/agent_network_example.py +0 -0
  55. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/network/email_agent.py +0 -0
  56. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/network/email_agent_demo.py +0 -0
  57. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/network/heterogeneous_network_example.py +0 -0
  58. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/network/multi_framework_example.py +0 -0
  59. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/utils/check_imports.py +0 -0
  60. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/autonomous_agent_workflow.py +0 -0
  61. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/mcp_features_demo.py +0 -0
  62. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/run_agent_collaboration_demo.py +0 -0
  63. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/run_agent_collaboration_with_logs.py +0 -0
  64. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/show_agent_interactions.py +0 -0
  65. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/demos/workflows/simplified_autonomous_demo.py +0 -0
  66. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/crewai_mcp_adapter.md +0 -0
  67. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/enhanced_mcp_agent.md +0 -0
  68. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/langchain_mcp_adapter.md +0 -0
  69. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/langgraph_mcp_adapter.md +0 -0
  70. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/mcp_agent.md +0 -0
  71. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/mcp_decorator.md +0 -0
  72. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/code_documentation/mcp_transport.md +0 -0
  73. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/decisions/0001-message-handling.md +0 -0
  74. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/framework_adapters.md +0 -0
  75. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/index.md +0 -0
  76. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/message_processing.md +0 -0
  77. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/docs/task_orchestration.md +0 -0
  78. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/env.template +0 -0
  79. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/functions/main.py +0 -0
  80. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/functions/mcp_network_server.py +0 -0
  81. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/functions/utils.py +0 -0
  82. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/requirements.txt +0 -0
  83. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/runtime.txt +0 -0
  84. {agent_mcp-0.1.5 → agent_mcp-0.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-mcp
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: The Universal System for AI Agent Collaboration - Connect any AI agent to every other agent
5
5
  Home-page: https://github.com/grupa-ai/agent-mcp
6
6
  Author: GrupaAI
@@ -264,7 +264,7 @@ AgentMCP handles the complexities behind the scenes:
264
264
  - **Framework Freedom**: Use the AI frameworks you know and love.
265
265
  - **Zero Config Networking**: Focus on agent logic, not infrastructure.
266
266
  - **Simple API**: Primarily interacts through the `@mcp_agent` decorator and task definitions.
267
- - **Adapters for Popular Frameworks**: Built-in support for Langchain, CrewAI, Autogen, LangGraph simplifies integration.
267
+ - **Adapters for Popular Frameworks**: Built-in support for Langchain, CrewAI, Autogen, LangGraph, LlamaIndex, Pydantic AI, Microsoft Agent Framework, CAMEL, and more.
268
268
  - **Asynchronous & Scalable Architecture**: Built on FastAPI for high performance.
269
269
  - **Multi-Provider Support**: Seamlessly switch between OpenAI, Gemini, Claude, and Agent Lightning.
270
270
  - **Cost Optimization**: Automatic 80-90% cost reduction through intelligent routing.
@@ -287,12 +287,17 @@ AgentMCP is designed for broad compatibility:
287
287
  - ✨ **OpenAI GPT** - Full OpenAI SDK integration
288
288
  - ✨ **Google Gemini** - Complete Google AI integration
289
289
  - ✨ **Anthropic Claude** - Full Claude API integration
290
+ - ✨ **LlamaIndex** - Production-ready RAG and document processing
291
+ - ✨ **Pydantic AI** - Type-safe, FastAPI-like agent framework
292
+ - ✨ **Microsoft Agent Framework** - Semantic Kernel + AutoGen unified platform
293
+ - ✨ **A2A Protocol** - Google's Agent-to-Agent communication standard
294
+ - ✨ **CAMEL** - Communicative Agents for Mind Exploration and Learning
290
295
  - ✨ **Multi-Provider Orchestration** - Mix and match any AI providers
291
296
 
292
297
  **Coming Soon:**
293
298
 
294
- - 🔜 LlamaIndex
295
- - 🔜 A2A Protocol Integration
299
+ - 🔜 Additional framework integrations
300
+ - 🔜 Enhanced protocol support
296
301
 
297
302
  *AgentMCP acts as a universal connector, enabling agents from different ecosystems to work together seamlessly.*
298
303
 
@@ -184,7 +184,7 @@ AgentMCP handles the complexities behind the scenes:
184
184
  - **Framework Freedom**: Use the AI frameworks you know and love.
185
185
  - **Zero Config Networking**: Focus on agent logic, not infrastructure.
186
186
  - **Simple API**: Primarily interacts through the `@mcp_agent` decorator and task definitions.
187
- - **Adapters for Popular Frameworks**: Built-in support for Langchain, CrewAI, Autogen, LangGraph simplifies integration.
187
+ - **Adapters for Popular Frameworks**: Built-in support for Langchain, CrewAI, Autogen, LangGraph, LlamaIndex, Pydantic AI, Microsoft Agent Framework, CAMEL, and more.
188
188
  - **Asynchronous & Scalable Architecture**: Built on FastAPI for high performance.
189
189
  - **Multi-Provider Support**: Seamlessly switch between OpenAI, Gemini, Claude, and Agent Lightning.
190
190
  - **Cost Optimization**: Automatic 80-90% cost reduction through intelligent routing.
@@ -207,12 +207,17 @@ AgentMCP is designed for broad compatibility:
207
207
  - ✨ **OpenAI GPT** - Full OpenAI SDK integration
208
208
  - ✨ **Google Gemini** - Complete Google AI integration
209
209
  - ✨ **Anthropic Claude** - Full Claude API integration
210
+ - ✨ **LlamaIndex** - Production-ready RAG and document processing
211
+ - ✨ **Pydantic AI** - Type-safe, FastAPI-like agent framework
212
+ - ✨ **Microsoft Agent Framework** - Semantic Kernel + AutoGen unified platform
213
+ - ✨ **A2A Protocol** - Google's Agent-to-Agent communication standard
214
+ - ✨ **CAMEL** - Communicative Agents for Mind Exploration and Learning
210
215
  - ✨ **Multi-Provider Orchestration** - Mix and match any AI providers
211
216
 
212
217
  **Coming Soon:**
213
218
 
214
- - 🔜 LlamaIndex
215
- - 🔜 A2A Protocol Integration
219
+ - 🔜 Additional framework integrations
220
+ - 🔜 Enhanced protocol support
216
221
 
217
222
  *AgentMCP acts as a universal connector, enabling agents from different ecosystems to work together seamlessly.*
218
223
 
@@ -2,7 +2,7 @@
2
2
  AgentMCP - Model Context Protocol for AI Agents
3
3
  """
4
4
 
5
- __version__ = "0.1.5"
5
+ __version__ = "0.1.6"
6
6
 
7
7
  # Core components
8
8
  try:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agent-mcp"
7
- version = "0.1.5"
7
+ version = "0.1.6"
8
8
  description = "The Universal System for AI Agent Collaboration - Connect any AI agent to every other agent"
9
9
  authors = [{name = "AgentMCP Team", email = "team@agentmcp.ai"}]
10
10
  readme = "README.md"
@@ -47,7 +47,7 @@ packages = find_packages(exclude=[
47
47
 
48
48
  setup(
49
49
  name="agent-mcp",
50
- version="0.1.5",
50
+ version="0.1.6",
51
51
  author="GrupaAI",
52
52
  description="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)",
53
53
  long_description=long_description,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes