Marketplace

The Creor Marketplace is a directory of MCP (Model Context Protocol) servers that extend the agent's capabilities. Install servers to give the agent access to new tools like database queries, cloud APIs, design systems, and more.

What Is the Marketplace

MCP servers are lightweight services that expose tools to the Creor agent via the Model Context Protocol. Each server provides one or more tools that the agent can call during a conversation -- for example, a Supabase server provides tools to query databases, manage tables, and deploy edge functions.

The Marketplace is a curated directory of community-built and officially maintained MCP servers. You can browse available servers, install them to your workspace with one click, and manage their configuration from the dashboard.

Note

MCP servers run locally alongside the Creor engine. They are not cloud services. When you install a server, the engine downloads and starts it as a subprocess.

Browsing Servers

Access the Marketplace from Dashboard > Marketplace or from the IDE via Settings > Tools & MCP > Browse Marketplace.

Search and Filter

  • Search by name, description, or tool name (e.g., "database", "slack", "github").
  • Filter by category: Databases, Cloud, DevOps, Productivity, Communication, Design, Analytics.
  • Sort by: popularity (installs), rating, recently updated, or alphabetical.
  • View tags for quick filtering (e.g., "official", "community", "beta").

Server Detail Page

Each server has a detail page showing:

  • Description and screenshots.
  • List of tools provided with parameter schemas.
  • Configuration requirements (API keys, environment variables).
  • Install count, rating, and reviews.
  • Author information and source code link.
  • Version history and changelog.

Installing Servers

Install a server from its detail page or from the search results.

One-Click Install

  • Click "Install" on the server's card or detail page.
  • If the server requires configuration (API keys, etc.), a setup form appears.
  • Enter the required configuration values.
  • Click "Activate" to start the server.
  • The server's tools are now available to the agent in your next conversation.

Manual Install via creor.json

You can also install servers by adding them to your project's creor.json file. This is useful for team-wide configurations that should be version-controlled.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"mcp": {
"servers": {
"supabase": {
"command": "npx",
"args": ["-y", "@creor/mcp-supabase"],
"env": {
"SUPABASE_URL": "$SUPABASE_URL",
"SUPABASE_KEY": "$SUPABASE_KEY"
}
},
"github": {
"command": "npx",
"args": ["-y", "@creor/mcp-github"],
"env": {
"GITHUB_TOKEN": "$GITHUB_TOKEN"
}
}
}
}
}

Tip

Use environment variable references ($VAR_NAME) in creor.json instead of hardcoded values. This lets you check the configuration into version control safely while each team member uses their own credentials.

Managing Servers

Manage installed servers from Dashboard > Marketplace > Installed or from the IDE settings.

Server Status

StatusMeaningAction
RunningServer is active and tools are availableNo action needed.
StoppedServer is installed but not runningClick "Start" to activate.
ErrorServer failed to start or crashedCheck logs. Common causes: missing config, port conflict.
Update availableA newer version is publishedClick "Update" to install the latest version.

Configuration

Update a server's configuration from its settings page. Changes take effect after restarting the server.

Uninstalling

  • Click the three-dot menu on the installed server.
  • Select "Uninstall".
  • Confirm the removal. The server process is stopped and its tools are no longer available.
  • Configuration data is retained for 30 days in case you reinstall.

Publishing

Publish your own MCP servers to the Marketplace to share tools with the Creor community.

Requirements

  • Server must implement the MCP protocol (see docs.creor.ai/mcp for the spec).
  • Must include a manifest file (mcp-server.json) with name, description, tools, and configuration schema.
  • Must be published as an npm package, Docker image, or standalone binary.
  • Must include a README with setup instructions and tool documentation.
  • Source code link is required. Closed-source servers are labeled accordingly.

Submission Process

  • Go to Dashboard > Marketplace > Publish.
  • Enter the package name or repository URL.
  • The system validates the manifest and tests tool definitions.
  • Submit for review. The Creor team reviews for quality and security (typically 1-3 business days).
  • Once approved, the server appears in the Marketplace.