EdgeOne Makers MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@EdgeOne Makers MCPdeploy my current project to EdgeOne Makers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
EdgeOne Makers MCP
An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.
Requirements
Node.js 18 or higher
Related MCP server: Self-Hosted EdgeOne Pages MCP Server
MCP Configuration
// Tencent Cloud International (Default)
{
"mcpServers": {
"edgeone-makers-mcp-server": {
"timeout": 600,
"command": "npx",
"args": ["@edgeone/makers-mcp@latest"],
"env": {
// Optional.
// If provided, skips the browser login flow.
// How to obtain your API token:
// https://pages.edgeone.ai/document/api-token
"EDGEONE_PAGES_API_TOKEN": "5Nx8vU0Kpo7yCkNtkAVAw51RpO9vJkvkTJHvBZ6pcts=",
// Optional.
// If provided, uses this as the project name instead of auto-generating.
"EDGEONE_PAGES_PROJECT_NAME": ""
}
}
}
}
// Tencent Cloud China
{
"mcpServers": {
"edgeone-makers-mcp-server": {
"timeout": 600,
"command": "npx",
"args": ["@edgeone/makers-mcp@latest", "--region", "china"],
"env": {
"EDGEONE_PAGES_API_TOKEN": "",
"EDGEONE_PAGES_PROJECT_NAME": ""
}
}
}
}How It Works
Authentication: Uses
EDGEONE_PAGES_API_TOKENif provided, otherwise opens browser for OAuth login (one-time).Project Name: Automatically resolved — no user interaction needed:
Uses
EDGEONE_PAGES_PROJECT_NAMEenv var if setReuses cached project name for the same workspace
Otherwise auto-generates from the workspace directory name
Deployment: Uploads and deploys, returns the live URL.
Quick HTML Preview
For quickly deploying a single HTML page for preview, use the Streaming HTTP MCP Server (no local installation required):
{
"mcpServers": {
"edgeone-makers-mcp-server": {
"url": "https://mcp-on-edge.edgeone.site/mcp-server"
}
}
}Source code: https://github.com/TencentEdgeOne/self-hosted-pages-mcp
License
MIT
Available Tools
1 tooldeploy_folderA
Deploy a folder containing web assets to EdgeOne Pages. Supports built projects (from build tools like Vite, Webpack, etc.), simple static file projects (HTML, CSS, JS files), and NextJS full-stack projects. Returns: deployment URL and project metadata.
IMPORTANT RULES:
This is the ONLY deployment method for EdgeOne Pages/Makers. Do NOT fallback to other deployment tools (cloudstudio, vercel, netlify, etc.) if this tool fails. Instead, report the error to the user and suggest fixes based on the error message.
If EDGEONE_PAGES_API_TOKEN is not configured and the user has not specified a region preference, ask them "您要部署到中国站还是国际站?(china/global)" before calling this tool, and pass their answer as the region parameter.
The projectName parameter should be a meaningful name describing the project (e.g. "my-blog", "todo-app", "ai-chat-demo"). Do NOT use date-based directory names or random strings as project names. Generate a descriptive name based on the project's purpose or content.
After deployment succeeds, show the deployment URL prominently to the user. Do NOT open local HTML files with file:// protocol as preview — always use the returned deployment URL as the preview link.
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Optional region for login. 'china' for mainland China users (cloud.tencent.com), 'global' for international users (edgeone.ai). Only needed when no EDGEONE_PAGES_API_TOKEN is configured. If not provided, defaults to 'global'. | |
| projectName | No | A meaningful, descriptive project name (e.g. "my-blog", "todo-app", "weather-widget"). Should reflect the project's purpose. Do NOT use date-based names (like "2026-07-20-project"), workspace directory names that are just dates, or random strings. If the workspace directory name is meaningful (e.g. "next-blog"), it can be used directly. If the directory name is a date or random ID, generate a descriptive name based on the project content instead. | |
| projectType | Yes | Specify the project type. Choose 'fullstack' for NextJS full-stack projects, or 'static' for static sites and other build tool outputs. Note: If workspacePath contains any of the directories 'functions', 'node-functions', or 'edge-functions', it should be considered a fullstack project. | |
| workspacePath | Yes | Provide the absolute path to the workspace folder. | |
| builtFolderPath | Yes | Provide the absolute path to the folder containing deployable web assets (HTML, CSS, JS, images, etc.). This can be either a build output directory (like dist/, build/, out/) or a folder with static files ready for deployment. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that deployment returns URL and metadata, and includes error handling and region preference behavior. Does not explicitly state it is a write operation, but 'deploy' implies mutation, which is clear enough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with intro, rules, and parameter details, but somewhat lengthy. Could tighten phrasing in rules without losing clarity. Still, every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description mentions return of deployment URL and metadata. Parameter coverage is thorough, and context about project type detection, region, and naming is complete. No gaps for effective usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but description adds substantial value: region explains when optional, projectName gives naming rules beyond schema, projectType includes detection logic, workspacePath and builtFolderPath clarified. Significantly aids agent in filling parameters correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it deploys a folder with web assets to EdgeOne Pages, listing supported project types. It explicitly positions itself as the only deployment method for EdgeOne Pages/Makers, distinguishing it from any potential siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides comprehensive rules: exclusive deployment method, no fallback, asks for region preference when token missing, naming conventions, and post-deployment preview instructions. Explicit when-to-use and when-not-to-fallback guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.0.3- First observed
deploy_folder
TDQS
Only one tool exists, so there is no ambiguity among tools. The description is clear and specific.
With a single tool, naming consistency is inherently perfect. The name 'deploy_folder' is descriptive and follows a verb_noun pattern.
A single deployment tool for EdgeOne Pages is narrowly focused but appropriate given the server's stated purpose. However, one tool feels slightly thin for a typical MCP server.
The server lacks essential lifecycle operations such as listing, updating, or deleting deployments. Only deployment is supported, leaving significant gaps for common workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Deploy full-stack web apps with database, file storage, auth, and RBAC via a single API call.
Deploy the small apps your agent builds: one tool call returns a live, private shareable HTTPS link.
Deploy files, sites, and Dockerfile apps to live URLs + private drives for agent memory.
Your AI builds, deploys, and runs full-stack apps on a hosted workspace created at first sign-in.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to deploy and manage static websites directly on EdgeOne Pages. Provides simple one-click deployment with KV storage for hosting website files accessible through custom domains.-
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to deploy and manage static websites directly on EdgeOne Pages through a self-hosted Model Context Protocol solution. It simplifies web hosting by allowing natural language commands to handle site deployment and KV storage management.-
- AlicenseBqualityDmaintenanceEnables deployment of HTML content, folders, and full-stack projects to EdgeOne Pages to generate publicly accessible URLs. It utilizes EdgeOne Pages Functions and KV storage for high-performance edge delivery of web applications.215MIT
- AlicenseBqualityDmaintenanceEnables the deployment of HTML content, folders, and full-stack projects to EdgeOne Pages to generate publicly accessible URLs. It integrates with edge functions and KV storage to provide fast content delivery and supports custom domain configuration.2502MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mlancoliee/edgeone-makers-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server