From 7a98f4e8fbff2acbe7bf1abadf41dc4671f7cc0f Mon Sep 17 00:00:00 2001 From: AI-Agent-Hub Date: Sat, 24 May 2025 07:51:55 +0800 Subject: [PATCH 1/2] Add open mcp marketplace api support --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index b2c854c..3cc9c39 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,21 @@ You should then see the application being part of your available tools like this ![Cursor MCP](perplexity-ask/assets/perplexity-ask-mcp-cursor.png) +## Resources + +### Open MCP Marketplace API Support +![MCP Marketplace User Review Rating Badge](http://www.deepnlp.org/api/marketplace/svg?ppl-ai/modelcontextprotocol)|[Reviews](http://www.deepnlp.org/store/ai-agent/mcp-server/pub-ppl-ai/modelcontextprotocol)|[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) +Allow AI App/Agent/LLM to find this MCP Server via common python/typescript API, search and explore relevant servers and tools + +***Example: Search Server and Tools*** +```python + import mcp_marketplace as mcpm + result_q = mcpm.search(query="research", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by category choose various endpoint + result_id = mcpm.search(id="ppl-ai/modelcontextprotocol", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by id choose various endpoint + tools = mcpm.list_tools(id="ppl-ai/modelcontextprotocol", config_name="deepnlp_tool") + print (f"MCP Server Meta {result_id} and Tools {tools}") + # Call Claude to Choose Tools Function Calls +``` ## License From 09391e8b2c85510f56074e2e0d40826e7860faa1 Mon Sep 17 00:00:00 2001 From: AI-Agent-Hub Date: Sat, 24 May 2025 07:56:07 +0800 Subject: [PATCH 2/2] Add open mcp marketplace api support new --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 3cc9c39..8ac6243 100644 --- a/README.md +++ b/README.md @@ -157,16 +157,13 @@ You should then see the application being part of your available tools like this ### Open MCP Marketplace API Support ![MCP Marketplace User Review Rating Badge](http://www.deepnlp.org/api/marketplace/svg?ppl-ai/modelcontextprotocol)|[Reviews](http://www.deepnlp.org/store/ai-agent/mcp-server/pub-ppl-ai/modelcontextprotocol)|[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) -Allow AI App/Agent/LLM to find this MCP Server via common python/typescript API, search and explore relevant servers and tools +Allow AI Agent/LLM to find this MCP Server via common python/typescript API, search&explore relevant servers and tools -***Example: Search Server and Tools*** ```python import mcp_marketplace as mcpm result_q = mcpm.search(query="research", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by category choose various endpoint result_id = mcpm.search(id="ppl-ai/modelcontextprotocol", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by id choose various endpoint tools = mcpm.list_tools(id="ppl-ai/modelcontextprotocol", config_name="deepnlp_tool") - print (f"MCP Server Meta {result_id} and Tools {tools}") - # Call Claude to Choose Tools Function Calls ``` ## License