AICre8 MCP Server
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., "@AICre8 MCP Servercreate a landing page for a coffee shop and deploy it"
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.
@aicre8/mcp-server
MCP server for AICre8 — connect AI agents to create, edit, and deploy web projects.
Works with Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.
Setup
1. Get an API Key
Go to aicre8.dev/settings and create an API key in the API Keys section.
2. Configure Your Client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"aicre8": {
"command": "npx",
"args": ["@aicre8/mcp-server"],
"env": {
"AICRE8_API_KEY": "ak_live_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project or global config:
{
"mcpServers": {
"aicre8": {
"command": "npx",
"args": ["@aicre8/mcp-server"],
"env": {
"AICRE8_API_KEY": "ak_live_your_key_here"
}
}
}
}Claude Code
claude mcp add aicre8 -- npx @aicre8/mcp-serverSet AICRE8_API_KEY in your environment.
3. Start Using
Once configured, ask your AI agent things like:
"List my AICre8 projects"
"Create a new project called Coffee Shop"
"Build a landing page with a dark theme and hero section"
"Deploy the project"
Related MCP server: Code Executor MCP Server
Available Tools
Tool | Description |
| List all your projects |
| Create a new project |
| Generate or modify code with AI |
| Read a file from the project sandbox |
| Write a file to the project sandbox |
| Run a shell command in the sandbox |
| Deploy to a live branded URL |
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Your API key (starts with |
| No |
| API base URL |
API Documentation
Full REST API docs: aicre8.dev/developers
License
MIT
Available Tools
7 toolscreate_projectA
Create a new AICre8 project. Returns the project ID and URL ID.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Project name (default: "API Project") | |
| access_type | No | Visibility: Public (gallery), Private (owner only), Link (anyone with URL) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool creates something new and returns specific data (project ID and URL ID), which is helpful. However, it doesn't mention permissions needed, whether creation is idempotent, rate limits, or error conditions - leaving significant behavioral gaps.
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?
The description is extremely concise - just two sentences that directly state the tool's purpose and return values. Every word earns its place with zero redundancy or unnecessary elaboration. It's front-loaded with the core action.
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?
For a creation tool with no annotations and no output schema, the description provides basic purpose and return information but lacks important context. It doesn't explain what happens after creation, error handling, or how the returned IDs should be used. The minimal information is adequate but leaves clear gaps for a mutation operation.
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 description coverage is 100%, so the schema already fully documents both parameters. The description adds no additional parameter information beyond what's in the schema. This meets the baseline expectation when schema coverage is complete.
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?
The description clearly states the specific action ('Create a new AICre8 project') and resource ('project'), distinguishing it from siblings like list_projects or deploy_project. It's not a tautology of the name and provides concrete information about what the tool does.
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?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, when not to use it, or compare it to sibling tools like list_projects or deploy_project. The agent must infer usage from context alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
deploy_projectC
Deploy the project to a live branded URL (e.g. my-project.aicre8.app). Pass a map of file paths to contents. Use b64 prefix for binary file content.
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (UUID or url_id) | |
| files | Yes | Map of file paths to content. Binary files: prefix content with "__b64__" followed by base64 data. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the deployment action and file handling details, implying a write/mutation operation, but fails to disclose critical traits: whether deployment is reversible, what permissions are required, if there are rate limits, or what happens on success/failure (e.g., URL generation, error handling). For a mutation tool with zero annotation coverage, this is a significant gap.
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?
The description is front-loaded with the core purpose in the first sentence, followed by specific implementation details. Both sentences earn their place by clarifying the action and file handling. It's appropriately sized for a 2-parameter tool, though it could be slightly more structured (e.g., bullet points for file rules).
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?
Given the complexity (deployment mutation with file handling), lack of annotations, and no output schema, the description is incomplete. It doesn't explain return values (e.g., success status, generated URL), error conditions, or side effects. For a tool that likely alters system state and involves binary data, more context is needed to be adequately helpful.
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 description coverage is 100%, so the schema already documents both parameters ('project_id' and 'files') thoroughly. The description adds marginal value by reiterating the file map structure and binary file prefix ('__b64__'), but doesn't provide additional syntax, format details, or examples beyond what the schema states. This meets the baseline of 3 when schema coverage is high.
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?
The description clearly states the action ('Deploy the project') and target ('to a live branded URL'), specifying the resource (project) and outcome (live URL). It distinguishes from siblings like 'create_project' or 'write_file' by focusing on deployment rather than creation or file operations. However, it doesn't explicitly differentiate from potential deployment-related siblings (none listed), keeping it at 4 instead of 5.
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?
The description provides no guidance on when to use this tool versus alternatives like 'create_project' for initial setup or 'run_command' for other deployment methods. It mentions file handling specifics but doesn't clarify prerequisites (e.g., must have a project created first) or exclusions (e.g., not for testing). This lack of contextual usage advice results in a low score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_codeA
Send a prompt to generate or modify code in an AICre8 project using AI. The AI will write files, install packages, and update the project. Costs 1 credit per call.
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (UUID or url_id) | |
| prompt | Yes | What to build or change | |
| chat_mode | No | Mode: "build" generates code (default), "discuss" for conversation only |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and adds valuable behavioral context beyond basic functionality: it discloses that the tool 'will write files, install packages, and update the project' and includes cost information ('Costs 1 credit per call'), though it lacks details on error handling or rate limits.
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?
The description is appropriately sized and front-loaded, with two concise sentences that efficiently convey the tool's purpose, actions, and cost without any wasted words, making it easy for an agent to parse quickly.
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?
Given the tool's complexity (AI-driven code generation with side effects) and no annotations or output schema, the description is mostly complete: it covers purpose, actions, and cost. However, it lacks details on return values or error conditions, which could help an agent handle responses better.
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 description coverage is 100%, so the schema already documents all three parameters. The description does not add any parameter-specific details beyond what the schema provides, such as examples for the prompt or project_id formats, resulting in a baseline score of 3.
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?
The description clearly states the tool's purpose with specific verbs ('generate or modify code') and resources ('AICre8 project using AI'), distinguishing it from siblings like create_project or write_file by focusing on AI-driven code generation rather than manual file operations or project management.
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?
The description provides clear context for when to use this tool ('Send a prompt to generate or modify code') and mentions a cost implication ('Costs 1 credit per call'), but it does not explicitly state when not to use it or name alternatives like write_file for manual edits, leaving some guidance gaps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_projectsA
List all your AICre8 projects with their IDs, names, and preview URLs
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It indicates a read operation ('List') and specifies the returned fields, but lacks details on behavioral traits such as pagination, rate limits, authentication needs, or error handling. It doesn't contradict annotations, but offers minimal behavioral context beyond the basic action.
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?
The description is a single, efficient sentence that front-loads the core action ('List all your AICre8 projects') and adds value by specifying the returned data. There is zero waste, and every part of the sentence contributes to understanding the tool's function.
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?
Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is adequate but has gaps. It explains what the tool does and what it returns, but without annotations or output schema, it misses details like response format, error cases, or usage constraints, making it minimally viable but not fully complete.
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?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter information, focusing instead on the tool's purpose and output details, which is sufficient given the lack of parameters.
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?
The description clearly states the action ('List all your AICre8 projects') and specifies what information is returned ('with their IDs, names, and preview URLs'), which provides a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'create_project' or 'deploy_project' in terms of when to choose listing versus creation/deployment.
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?
The description implies usage by specifying 'List all your AICre8 projects,' suggesting it's for retrieving existing projects, but it doesn't provide explicit guidance on when to use this tool versus alternatives like 'create_project' or 'deploy_project.' No exclusions or clear context for alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_fileA
Read a file from the project sandbox. Requires an active sandbox (run generate_code first to boot it).
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (UUID or url_id) | |
| file_path | Yes | File path relative to project root (e.g. "src/App.tsx") | |
| encoding | No | Encoding: "utf-8" (default) for text, "base64" for binary files |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: it's a read operation (implied by 'Read'), requires an active sandbox (a prerequisite condition), and hints at context (sandbox environment). However, it doesn't mention potential errors, rate limits, or output format details, leaving some gaps.
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?
The description is front-loaded with the core purpose in the first sentence and adds a crucial prerequisite in the second. Every sentence earns its place with no wasted words, making it highly efficient and well-structured.
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?
Given the tool's moderate complexity (read operation with prerequisites), no annotations, and no output schema, the description is mostly complete. It covers purpose, usage, and prerequisites but lacks details on return values or error handling, which would be beneficial for full completeness.
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 description coverage is 100%, so the schema fully documents all parameters. The description adds no additional parameter semantics beyond what the schema provides, such as examples or usage notes. Baseline 3 is appropriate as the schema handles the heavy lifting.
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?
The description clearly states the specific action ('Read a file') and resource ('from the project sandbox'), distinguishing it from siblings like write_file (which writes) or list_projects (which lists). It precisely defines the tool's function without ambiguity.
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?
It explicitly states when to use this tool ('Read a file from the project sandbox') and provides a prerequisite ('Requires an active sandbox') with a clear alternative action ('run generate_code first to boot it'), guiding the agent on proper usage versus other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
run_commandA
Execute a shell command in the project sandbox (e.g. npm install, npm run build). Max timeout 5 minutes.
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (UUID or url_id) | |
| command | Yes | Shell command to execute | |
| cwd | No | Working directory (default: /home/user/project) | |
| timeout_ms | No | Timeout in milliseconds (default: 120000, max: 300000) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds context about the timeout constraint (5 minutes max) and the sandbox environment, which is useful. However, it doesn't cover critical aspects like security implications, error handling, output format, or whether commands are executed with specific permissions, leaving significant gaps for a tool that executes arbitrary shell commands.
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?
The description is highly concise with just two sentences that directly convey the core functionality and a key constraint. Every word earns its place, and it's front-loaded with the main purpose, making it efficient and easy to parse.
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?
Given the complexity of executing arbitrary shell commands (a high-risk operation), no annotations, and no output schema, the description is incomplete. It covers the basic purpose and timeout but lacks details on security, error handling, return values, or dependencies on other tools like 'create_project'. For such a tool, more context is needed to ensure safe and effective use.
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 description coverage is 100%, so the schema already documents all 4 parameters thoroughly. The description doesn't add any parameter-specific details beyond what's in the schema (e.g., it doesn't explain 'project_id' or 'cwd' further). Baseline 3 is appropriate when the schema does the heavy lifting, though no extra value is provided.
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?
The description clearly states the verb 'execute' and resource 'shell command in the project sandbox', with examples like 'npm install, npm run build' that make the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'deploy_project' or 'generate_code', which might also involve command execution in some contexts.
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?
The description implies usage for executing shell commands in a project sandbox, but doesn't provide explicit guidance on when to use this versus alternatives like 'deploy_project' or 'generate_code'. It mentions a 'max timeout 5 minutes', which offers some operational context but no clear when-not-to-use or prerequisite information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
write_fileA
Write or update a file in the project sandbox. Creates parent directories automatically.
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (UUID or url_id) | |
| file_path | Yes | File path relative to project root (e.g. "src/App.tsx") | |
| content | Yes | File content to write | |
| encoding | No | Encoding: "utf-8" (default) for text, "base64" for binary files |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It effectively describes key behaviors: it performs write/update operations (implying mutation), automatically creates parent directories (a helpful implementation detail), and operates within a sandbox environment (suggesting isolation). However, it doesn't cover permissions, error conditions, or response format.
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?
The description is extremely concise (two sentences) with zero wasted words. The first sentence states the core purpose, and the second adds valuable behavioral context. Every element earns its place.
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?
For a mutation tool with no annotations and no output schema, the description provides adequate basic information about what the tool does and its automatic directory creation behavior. However, it lacks details about error handling, response format, or specific constraints that would be helpful for complete understanding.
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 description coverage is 100%, so the schema already documents all four parameters thoroughly. The description adds no additional parameter information beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage.
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?
The description clearly states the specific action ('write or update a file'), the target resource ('in the project sandbox'), and includes a behavioral detail ('creates parent directories automatically'). It distinguishes itself from sibling tools like 'read_file' by specifying a write operation rather than a read operation.
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?
The description implies usage for file writing/updating in a project context, but provides no explicit guidance on when to use this tool versus alternatives like 'generate_code' or 'run_command'. It mentions the sandbox environment but doesn't clarify prerequisites or exclusions.
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.
7 tool updates
v0.1.0- First observed
create_project - First observed
deploy_project - First observed
generate_code - First observed
list_projects - First observed
read_file - First observed
run_command - First observed
write_file
TDQS
Each tool has a clearly distinct purpose with no overlap: create_project, deploy_project, generate_code, list_projects, read_file, run_command, and write_file all target specific actions in the AICre8 project lifecycle. An agent can easily distinguish between them, such as separating file operations (read_file, write_file) from project management (create_project, list_projects) and execution (run_command, generate_code).
All tool names follow a consistent verb_noun pattern with snake_case, such as create_project, deploy_project, generate_code, list_projects, read_file, run_command, and write_file. This uniformity makes the tool set predictable and easy to navigate, with no deviations in style or convention.
With 7 tools, the server is well-scoped for managing AICre8 projects, covering creation, deployment, code generation, listing, and file/sandbox operations. Each tool earns its place by addressing a core aspect of the workflow, avoiding bloat while ensuring comprehensive functionality for the domain.
The tool set provides strong coverage for AICre8 project management, including CRUD-like operations (create, list, deploy) and sandbox interactions (read/write files, run commands, generate code). A minor gap exists in the lack of update or delete operations for projects, but agents can work around this by managing files or regenerating code as needed.
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
Manage WeInc AI website builder orgs: projects, publishing, custom domains, and previews.
Deploy and manage your apps, databases, storage, and scheduled jobs from your AI agent
- mcpOAuthapp.aveiro
Create, update, and publish real hosted websites from your agent via the Aveiro API.
Develop, manage, and debug Railway projects, services, and deployments from within agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides secure, sandboxed file system access for AI assistants to read, write, and manage project files with controlled command execution capabilities, all confined to a designated workspace directory.MIT
- AlicenseNot gradedqualityAmaintenanceProvides sandboxed code execution for AI agents with support for Python, JavaScript, and shell commands. Includes comprehensive safety features like destructive pattern blocking, timeout protection, and restricted file access for secure production use.22MIT

Prowpt MCP Serverofficial
AlicenseCqualityCmaintenanceEnables AI agents to create, edit, and publish web apps on Prowpt.ai through project management, code editing, and AI assistant tools.59MIT- FlicenseAqualityDmaintenanceEnables AI assistants to securely execute Python and JavaScript code in sandboxed environments, with file management and package installation.788-
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/AICre8dev/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server