CloudBase MCP Marketplace is now launched
Before submitting your MCP Server to the CloudBase MCP Marketplace, please check the following items:
- Open source code: Your MCP Server should be open source and have a business-friendly license, such as MIT, Apache, etc.
- Security: Your MCP Server does not read user's local data, such as local files, local databases, unnecessary environment variables, etc.
- Transport type: Your MCP Server uses Stdio for service.
Development and Testing
Please refer to the Development Guide to develop and test your MCP Server.
After sufficient development and testing, you can submit your MCP Server to the CloudBase MCP Marketplace to make it available for more users.
Documentation Writing and Marketplace Listing Information
Please prepare to write two necessary documents, referring to the Sample Project for Hosting Local MCP on CloudBase Server
DOC.md
: The showcase documentation for the MCP service, which will be displayed on the template details page. Please refer to the example format for writing, using standard markdown format.meta.json
: The configuration file for the CloudBase MCP service. Please refer to the example format for writing, using standard JSON format.
Listing Submission
Please ensure that your MCP Server has been successfully deployed and is running in CloudBase, and that the documentation and marketplace listing information are prepared.
Then follow the steps below to submit for listing:
- Click Submit CloudBase MCP Server Template / Requirement
- Fill in the listing information, select the submission template, and provide details including the MCP Server name, code repository information, and contact details.
- If the MCP Server relies on specific environment variables, you can provide a test environment variable for reviewers to test.
- Click the Submit button and wait for approval
- After approval, the CloudBase MCP Marketplace will display your MCP Server for more users to utilize.
Friendly Links
After successful listing, your MCP will be displayed in the CloudBase MCP Marketplace for more users to utilize.
You are welcome to add the following friendly links in your project documentation to help more people learn about and use your MCP Server.
## Remote MCP
This project supports [One-Click Deployment to Tencent CloudBase Platform](https://docs.cloudbase.net/ai/mcp/develop/host-mcp), providing remote Streamable HTTP access.
[☁️ Go to CloudBase Platform to deploy MCP Server](https://tcb.cloud.tencent.com/dev#/ai?tab=mcp&p&mcp-template=mcp-alapi-cn)
Reference Information
meta.json
Field Descriptions
Field Name | Type | Description | Example |
---|---|---|---|
name | string | The unique identifier for the application or service, typically using a combination of lowercase letters and underscores for ease of referencing in command lines and code. | "mcp-mongo" |
title | string | The display name of the application or service, typically used in user interfaces and documentation for easy user identification. | "MongoDB" |
description | string | A brief description of the application or service, outlining its main functions and purposes. | "Provides access and management capabilities for MongoDB databases" |
author | object | An object containing author information, typically including the author's name and sometimes contact details. | { "name": "Community Template" } |
gitUrl | string | The URL address of the project code repository, typically pointing to a Git version control system (e.g., GitHub, GitLab). Users can view source code, submit issues, or contribute code through this link. | "https://github.com/QuantGeekDev/mongo-mcp" |
tags | array | Contains a list of tags describing the application or service, facilitating categorization and search. | ["Database Management", "MongoDB", "Community MCP"] |
port | number | The port number on which the application listens for external requests. Must match the EXPOSE command in the Dockerfile. | 80 |
logo | array | A list of URLs for the application's logo, typically used for display in user interfaces or documentation. | ["cloud://tcb-advanced-a656fc.7463-tcb-advanced-a656fc-1257967285/mcp-logo.png"] |
env_params | object | Contains key-value pairs of environment variables used to configure the runtime environment parameters required by the application. | { "HOST": "Database server address", "PORT": "Database port number", "USER": "Database login username", "PASSWORD": "Database login password", "DATABASE": "Name of the database to connect to" } |