Revert "Update AMP to AOP (#3941)"

This reverts commit 9c84475691.
This commit is contained in:
lorenzejay
2025-11-24 16:06:48 -08:00
parent 02a6ffda8f
commit abe39ccbaf
205 changed files with 594 additions and 592 deletions

View File

@@ -60,9 +60,9 @@ Use the `#` syntax to select specific tools from a server:
"https://mcp.exa.ai/mcp?api_key=your_key#web_search_exa"
```
### CrewAI AOP Marketplace
### CrewAI AMP Marketplace
Access tools from the CrewAI AOP marketplace:
Access tools from the CrewAI AMP marketplace:
```python
# Full service with all tools
@@ -97,7 +97,7 @@ multi_source_agent = Agent(
"https://mcp.exa.ai/mcp?api_key=your_exa_key&profile=research",
"https://weather.api.com/mcp#get_current_conditions",
# CrewAI AOP marketplace
# CrewAI AMP marketplace
"crewai-amp:financial-insights",
"crewai-amp:academic-research#pubmed_search",
"crewai-amp:market-intelligence#competitor_analysis"

View File

@@ -17,7 +17,7 @@ Use the `mcps` field directly on agents for seamless MCP tool integration. The D
#### String-Based References (Quick Setup)
Perfect for remote HTTPS servers and CrewAI AOP marketplace:
Perfect for remote HTTPS servers and CrewAI AMP marketplace:
```python
from crewai import Agent
@@ -29,7 +29,7 @@ agent = Agent(
mcps=[
"https://mcp.exa.ai/mcp?api_key=your_key", # External MCP server
"https://api.weather.com/mcp#get_forecast", # Specific tool from server
"crewai-amp:financial-data", # CrewAI AOP marketplace
"crewai-amp:financial-data", # CrewAI AMP marketplace
"crewai-amp:research-tools#pubmed_search" # Specific AMP tool
]
)
@@ -203,7 +203,7 @@ mcps=[
]
```
#### CrewAI AOP Marketplace
#### CrewAI AMP Marketplace
```python
mcps=[