Skip to content

Commit e88a5f6

Browse files
author
AI-Agent-Hub
committed
Add open mcp marketplace api support
1 parent ce17a32 commit e88a5f6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,29 @@ The evals package loads an mcp client that then runs the index.ts file, so there
124124
OPENAI_API_KEY=your-key npx mcp-eval src/evals/evals.ts src/tools/codegen/index.ts
125125
```
126126

127+
## Resources
128+
129+
<details>
130+
<summary><b>Open MCP Marketplace API Support</b></summary>
131+
132+
![MCP Marketplace User Review Rating Badge](http://www.deepnlp.org/api/marketplace/svg?executeautomation/mcp-playwright)|[Reviews](http://www.deepnlp.org/store/ai-agent/mcp-server/pub-executeautomation/mcp-playwright)|[GitHub](https://github.com/AI-Agent-Hub/mcp-marketplace)|[Doc](http://www.deepnlp.org/doc/mcp_marketplace)|[MCP Marketplace](http://www.deepnlp.org/store/ai-agent/mcp-server)
133+
134+
Allow AI/Agent/LLM to find this MCP Server via common python/typescript API, search and explore relevant servers and tools
135+
136+
***Example: Search Server and Tools***
137+
```python
138+
import anthropic
139+
import mcp_marketplace as mcpm
140+
141+
result_q = mcpm.search(query="mcp playwright", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by category choose various endpoint
142+
result_id = mcpm.search(id="executeautomation/mcp-playwright", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by id choose various endpoint
143+
tools = mcpm.list_tools(id="executeautomation/mcp-playwright", config_name="deepnlp_tool")
144+
# Call Claude to Choose Tools Function Calls
145+
# client = anthropic.Anthropic()
146+
# response = client.messages.create(model="claude-opus-4-20250514", max_tokens=1024, tools=tools, messages=[])
147+
```
148+
149+
127150
## Star History
128151

129152
[![Star History Chart](https://api.star-history.com/svg?repos=executeautomation/mcp-playwright&type=Date)](https://star-history.com/#executeautomation/mcp-playwright&Date)

0 commit comments

Comments
 (0)