Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,16 @@ This DeepNLP AI Agent Marketplace dataset contains more than 10k+ AI Agent Meta
|
|
| 17 |
We want to build an Open AI agent marketplace registry so that developers and can [submit their AI agent](https://www.deepnlp.org/workspace/my_ai_services) and users can explore. And we are providing
|
| 18 |
the meta back to the community on a regular basis so the dataset is useful for research, development purposes.
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
- **Easy method to Submit** (python, nodejs and curl) for developers to submit their AI agents's meta information and register to the marketplace. Any user can explore and find their AI agents from the AI Agent search engine (https://www.deepnlp.org/search/agent) and API documentation (https://www.deepnlp.org/doc/ai_agent_marketplace).
|
| 21 |
|
| 22 |
|
|
@@ -40,7 +50,7 @@ Not to Use in this way
|
|
| 40 |
|
| 41 |
agent.json example
|
| 42 |
|
| 43 |
-
For
|
| 44 |
|
| 45 |
```
|
| 46 |
{
|
|
@@ -65,7 +75,7 @@ For example, we use the AI Agent MCP server [Google Maps MCP Servers](https://ww
|
|
| 65 |
```
|
| 66 |
|
| 67 |
|
| 68 |
-
**AI Agent Registry
|
| 69 |
- Users' Registry and submission [GitHub](https://github.com/AI-Agent-Hub/AI-Agent-Marketplace).
|
| 70 |
- AI Agent open sourced in Github and more
|
| 71 |
- AI Agent in Each Store OpenAI SDK, Claude SDK, Modelscope, etc.
|
|
@@ -74,13 +84,15 @@ For example, we use the AI Agent MCP server [Google Maps MCP Servers](https://ww
|
|
| 74 |
|
| 75 |
### Submit AI Agent to Registry
|
| 76 |
|
| 77 |
-
Curl
|
|
|
|
|
|
|
| 78 |
```
|
| 79 |
curl -X POST https://www.deepnlp.org/api/ai_agent_marketplace/registry -H "Content-Type: application/json" -d '{"github":"https://github.com/microsoft/markitdown", "access_key":"{AI_AGENT_MARKETPLACE_ACCESS_KEY}"}'
|
| 80 |
|
| 81 |
```
|
| 82 |
|
| 83 |
-
Python
|
| 84 |
```
|
| 85 |
import ai_agent_marketplace as aa
|
| 86 |
import json
|
|
@@ -138,4 +150,5 @@ search_ai_agent_traffic_data()
|
|
| 138 |
Related:
|
| 139 |
- [Open AI Agent Marketplace](https://www.deepnlp.org/store/ai-agent) and [AI Agent Search Engine](https://www.deepnlp.org/search/agent)
|
| 140 |
- [AI Agent Registry and Submission](https://www.deepnlp.org/workspace/my_ai_services)
|
| 141 |
-
- [OneKey Agent Router to Track AI Agent APIs Performace](https://www.deepnlp.org/agent/onekey-ai-agent-router)
|
|
|
|
|
|
| 17 |
We want to build an Open AI agent marketplace registry so that developers and can [submit their AI agent](https://www.deepnlp.org/workspace/my_ai_services) and users can explore. And we are providing
|
| 18 |
the meta back to the community on a regular basis so the dataset is useful for research, development purposes.
|
| 19 |
|
| 20 |
+
<img src="https://raw.githubusercontent.com/AI-Agent-Hub/AI-Agent-Marketplace/refs/heads/main/docs/ai_agent_marketplace_distribution.png" style="height:600px;" alt="AI Agent Marketplace Category">
|
| 21 |
+
|
| 22 |
+
| Dataset | Size | Last Upate Date |
|
| 23 |
+
| ---- | ----- | ---- |
|
| 24 |
+
| deepnlp_open_ai_agent_marketplace_index_2025_10.json | 14k | 2025-10-13 |
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
We would like to help developers and end users within the lifecycle of AI agent development. From the registration, deployment, Agent router, API calling, metric/traffic tracking, and finally to the stage of moneyterization from your AI Agent. Anyone can submit their AI agents card information, code, APIs, pricing plans to the public registry, just like your submit a paper to arxiv.org and submit models to huggingface.co.
|
| 28 |
+
|
| 29 |
+
|
| 30 |
- **Easy method to Submit** (python, nodejs and curl) for developers to submit their AI agents's meta information and register to the marketplace. Any user can explore and find their AI agents from the AI Agent search engine (https://www.deepnlp.org/search/agent) and API documentation (https://www.deepnlp.org/doc/ai_agent_marketplace).
|
| 31 |
|
| 32 |
|
|
|
|
| 50 |
|
| 51 |
agent.json example
|
| 52 |
|
| 53 |
+
For instance, we use the AI Agent MCP server [Google Maps MCP Servers](https://www.deepnlp.org/store/mcp-server/map/pub-google-maps/google-maps) as an example.
|
| 54 |
|
| 55 |
```
|
| 56 |
{
|
|
|
|
| 75 |
```
|
| 76 |
|
| 77 |
|
| 78 |
+
**AI Agent Registry Data Sources**:
|
| 79 |
- Users' Registry and submission [GitHub](https://github.com/AI-Agent-Hub/AI-Agent-Marketplace).
|
| 80 |
- AI Agent open sourced in Github and more
|
| 81 |
- AI Agent in Each Store OpenAI SDK, Claude SDK, Modelscope, etc.
|
|
|
|
| 84 |
|
| 85 |
### Submit AI Agent to Registry
|
| 86 |
|
| 87 |
+
**Curl**
|
| 88 |
+
|
| 89 |
+
Get Access Key (https://www.deepnlp.org/workspace/keys)
|
| 90 |
```
|
| 91 |
curl -X POST https://www.deepnlp.org/api/ai_agent_marketplace/registry -H "Content-Type: application/json" -d '{"github":"https://github.com/microsoft/markitdown", "access_key":"{AI_AGENT_MARKETPLACE_ACCESS_KEY}"}'
|
| 92 |
|
| 93 |
```
|
| 94 |
|
| 95 |
+
**Python**
|
| 96 |
```
|
| 97 |
import ai_agent_marketplace as aa
|
| 98 |
import json
|
|
|
|
| 150 |
Related:
|
| 151 |
- [Open AI Agent Marketplace](https://www.deepnlp.org/store/ai-agent) and [AI Agent Search Engine](https://www.deepnlp.org/search/agent)
|
| 152 |
- [AI Agent Registry and Submission](https://www.deepnlp.org/workspace/my_ai_services)
|
| 153 |
+
- [OneKey Agent Router to Track AI Agent APIs Performace](https://www.deepnlp.org/agent/onekey-ai-agent-router)
|
| 154 |
+
|