Skip to content

Add open mcp marketplace api support#139

Open
AI-Agent-Hub wants to merge 2 commits intowonderwhy-er:mainfrom
AI-Agent-Hub:dev_add_mcp_marketplace_support
Open

Add open mcp marketplace api support#139
AI-Agent-Hub wants to merge 2 commits intowonderwhy-er:mainfrom
AI-Agent-Hub:dev_add_mcp_marketplace_support

Conversation

@AI-Agent-Hub
Copy link
Copy Markdown

@AI-Agent-Hub AI-Agent-Hub commented May 28, 2025

Hi DesktopCommanderMCP,
Your MCP server is awesome. And I would like to introduce MCP Marketplace Python and Typescript API and add support to your MCP Server, which allow any LLM AI Agent to integrate your MCP servers easily into the workflow, by searching relevant servers and tools meta and schemas, and give LLM more chances to know more about your MCP tools, increase usage from thousands of AI Agents or Applications. And here is a demo backend codes in python to integrate your servers tools for Claude function calls API

Resources

Open MCP Marketplace API Support

MCP Marketplace User Review Rating Badge|Reviews|GitHub|Doc|MCP Marketplace

Allow AI/Agent/LLM to find this MCP Server via common python/typescript API, search and explore relevant servers and tools

Example: Search Server and Tools

import anthropic
import mcp_marketplace as mcpm

result_q = mcpm.search(query="desktopcommandermcp", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by category choose various endpoint
result_id = mcpm.search(id="wonderwhy-er/desktopcommandermcp", mode="list", page_id=0, count_per_page=100, config_name="deepnlp")      # search server by id choose various endpoint 
tools = mcpm.list_tools(id="wonderwhy-er/desktopcommandermcp", config_name="deepnlp_tool")
# Call Claude to Choose Tools Function Calls 
# client = anthropic.Anthropic()
# response = client.messages.create(model="claude-opus-4-20250514", max_tokens=1024, tools=tools, messages=[])

Summary by CodeRabbit

  • Documentation
    • Added a new badge for MCP Marketplace User Review Rating at the top of the README.
    • Introduced a "Resources" section with a collapsible block providing links to reviews, GitHub, documentation, and the MCP Marketplace store page.
    • Included a Python code example for discovering and using the MCP Server via common APIs.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 28, 2025

Walkthrough

The README.md documentation was updated to include a new MCP Marketplace User Review Rating badge at the top and a "Resources" section near the end. The new section provides a collapsible block with marketplace links, a description of API discovery, and a Python code example for interacting with the MCP Server.

Changes

File(s) Change Summary
README.md Added MCP Marketplace User Review Rating badge, new "Resources" section with links, description, and Python code example for API usage. No removals or changes to existing content.

Poem

A shiny new badge, a resourceful hop,
Marketplace links where the carrots don't stop.
With Python in paw, I search and I find,
Tools for my burrow, so cleverly designed.
Collapsible secrets, a bunny delight—
README refreshed, and all feels right! 🥕


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a34dced and ad416e5.

📒 Files selected for processing (1)
  • README.md (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • README.md

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (4)
README.md (4)

7-7: Prefer HTTPS for external badge URLs
To avoid mixed-content warnings and improve security, update the MCP Marketplace badge and link to use https:// if supported by the server.

-[![MCP Marketplace User Review Rating Badge](http://www.deepnlp.org/api/marketplace/svg?wonderwhy-er/desktopcommandermcp)](http://www.deepnlp.org/store/ai-agent/mcp-server/pub-wonderwhy-er/desktopcommandermcp)
+[![MCP Marketplace User Review Rating Badge](https://www.deepnlp.org/api/marketplace/svg?wonderwhy-er/desktopcommandermcp)](https://www.deepnlp.org/store/ai-agent/mcp-server/pub-wonderwhy-er/desktopcommandermcp)

Can you confirm that the deepnlp.org endpoints support HTTPS?


556-579: Enhance the Resources section with installation steps and TypeScript usage
The new "Resources" block introduces a Python example but could be more actionable:

  1. Precede the code with installation instructions (e.g., pip install mcp_marketplace).
  2. Since the PR targets both Python and TypeScript APIs, add a parallel TS snippet (for example, npm install @mcp-marketplace/client and a short TS example).

561-561: Use HTTPS for marketplace links in Resources
Replace all http://www.deepnlp.org/... links inside the details block with https:// to maintain consistency and security.

-![MCP Marketplace User Review Rating Badge](http://www.deepnlp.org/api/marketplace/svg?wonderwhy-er/desktopcommandermcp)|[Reviews](http://www.deepnlp.org/store/ai-agent/mcp-server/pub-wonderwhy-er/desktopcommandermcp)|[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)
+![MCP Marketplace User Review Rating Badge](https://www.deepnlp.org/api/marketplace/svg?wonderwhy-er/desktopcommandermcp)|[Reviews](https://www.deepnlp.org/store/ai-agent/mcp-server/pub-wonderwhy-er/desktopcommandermcp)|[GitHub](https://github.com/AI-Agent-Hub/mcp-marketplace)|[Doc](https://www.deepnlp.org/doc/mcp_marketplace)|[MCP Marketplace](https://www.deepnlp.org/store/ai-agent/mcp-server)

563-563: Refine descriptive text for clarity
The line

"Allow AI/Agent/LLM to find this MCP Server via common python/typescript API, search and explore relevant servers and tools"
could be rephrased for consistency and readability, for example:
"Enable AI agents and LLMs to discover this MCP Server using Python and TypeScript APIs for searching servers, tools, and schemas."

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6a71090 and a34dced.

📒 Files selected for processing (1)
  • README.md (2 hunks)

@wonderwhy-er
Copy link
Copy Markdown
Owner

Hey man, seems you are early, no https certificate even on the market.
Are you in discord? Would like to chat with you.

@AI-Agent-Hub
Copy link
Copy Markdown
Author

Hi wonderwhy-er,
Thanks for your comments. We just started and now https API support is ready. MCP Marketplace (https://github.com/AI-Agent-Hub/mcp-marketplace) is the open source agent client which also provides APIs for developers and researchers to search and feed tools to LLM. And your MCP server DesktopCommanderMCP is really useful and hopefully it can be be explored by more and more agent workflows when distributed by ToolsDispatcherAgent and integrating into various workflows.

API:
https://www.deepnlp.org/api/mcp_marketplace/v1/server/wonderwhy-er/DesktopCommanderMCP

Badge

MCP Marketplace User Review Rating Badge

Agent Workflow integration Python BackEnd Usage

Example: Search Server and Tools

import anthropic
import mcp_marketplace as mcpm

result_q = mcpm.search(query="filesystem", mode="list", page_id=0, count_per_page=100, config_name="deepnlp") # search server by category choose various endpoint
result_id = mcpm.search(id="wonderwhy-er/desktopcommandermcp", mode="list", page_id=0, count_per_page=100, config_name="deepnlp")      # search server by id choose various endpoint 
tools = mcpm.list_tools(id="wonderwhy-er/desktopcommandermcp", config_name="deepnlp_tool")
# Call Claude to Choose Tools Function Calls 
# client = anthropic.Anthropic()
# response = client.messages.create(model="claude-opus-4-20250514", max_tokens=1024, tools=tools, messages=[])

@mudnaes
Copy link
Copy Markdown

mudnaes commented Jun 17, 2025

Just want to say that it would be super useful to get general api support. Desktop-commander is a great tool, but to integrate with CrewAI or other LLMs it needs a non Claud integration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants