MCP Maker
Allows cloning the repository from GitHub to set up the MCP server
Provides configuration guidance for macOS systems when setting up the MCP server with Claude Desktop
Enables running the MCP server using Node.js runtime environment
Supports package installation using npm package manager
Supports package installation and project building using pnpm package manager
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., "@MCP Makergenerate a new MCP server for weather data with tool templates"
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.
MCP Maker
A Model Context Protocol server for creating new MCPs.
Overview
MCP Maker is a specialized MCP server designed to help you create new Model Context Protocol servers. It provides tools and templates for scaffolding MCP projects with various capabilities including:
Basic MCP server structure setup
Tool definition templates
Resource templates
Prompt templates
Configuration guidance for Claude Desktop integration
Related MCP server: MCP-Creator-MCP
Installation
Prerequisites
Node.js (v18+)
npm or pnpm
Setup
Clone this repository:
git clone https://github.com/yourusername/mcp-maker
cd mcp-makerInstall dependencies:
pnpm installBuild the project:
pnpm run buildUsage with Claude Desktop
Configure Claude Desktop to recognize the MCP Maker server:
Edit your Claude Desktop configuration file:
On macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonOn Windows:
%APPDATA%/Claude/claude_desktop_config.json
Add the following to your configuration:
{
"mcpServers": {
"mcp-maker": {
"command": "node",
"args": ["/absolute/path/to/mcp-maker/build/index.js"]
}
}
}Restart Claude Desktop
In Claude Desktop, you can now use MCP Maker's tools to help you create new MCP servers.
Available Tools
generate_mcp_boilerplate
Creates a new MCP server project with all the necessary boilerplate files.
create_tool_template
Generates template code for a new MCP tool with customizable parameters.
create_resource_template
Generates template code for a new MCP resource.
create_prompt_template
Generates template code for a new MCP prompt.
Development
For development with auto-rebuild:
pnpm run watchFor debugging, use the MCP Inspector:
pnpm run inspectorLicense
MIT
Available Tools
8 toolscreate_prompt_templateC
Generates template code for a new MCP prompt
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| include_variables | No | ||
| output_dir | Yes | ||
| prompt_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool generates code, implying a write operation, but doesn't cover critical aspects like file system effects (e.g., whether it overwrites existing files), permissions needed, error handling, or output format. This is a significant gap for a tool that likely creates files.
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 directly states the tool's function without any fluff. It's appropriately sized and front-loaded, making it easy to grasp immediately.
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 a code-generation tool with 4 parameters, no annotations, and no output schema, the description is incomplete. It lacks details on behavior, parameter meanings, and expected outcomes, which are essential for effective use. The conciseness comes at the cost of necessary context.
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 schema description coverage is 0%, so the description must compensate, but it adds no parameter information beyond what's inferred from the tool name. It doesn't explain the meaning of parameters like 'include_variables' or 'output_dir', leaving them undocumented. However, the tool name and description imply parameters related to prompt creation, providing minimal context.
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 ('Generates') and the resource ('template code for a new MCP prompt'), making the purpose understandable. However, it doesn't differentiate this tool from its siblings like 'create_resource_template' or 'create_tool_template', which likely generate similar templates for different MCP components.
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 such as 'create_resource_template' or 'generate_mcp_boilerplate'. There's no mention of prerequisites, typical scenarios, or exclusions, leaving usage context entirely implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_resource_templateC
Generates template code for a new MCP resource
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| output_dir | Yes | ||
| resource_name | Yes | ||
| resource_uri_pattern | Yes |
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. While 'Generates' implies a write operation that creates files, it doesn't disclose important behavioral aspects: whether it overwrites existing files, what permissions are needed, what format the output takes, or whether it's idempotent. The description provides 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 extremely concise - a single sentence that gets straight to the point with zero wasted words. It's front-loaded with the core action and doesn't include any unnecessary elaboration. For a tool that generates code templates, this level of brevity is appropriate if supplemented by good parameter documentation.
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 tool with 4 required parameters, 0% schema description coverage, no annotations, and no output schema, the description is severely inadequate. It doesn't explain what the tool actually produces, what the parameters mean, or how the generated template should be used. The description leaves too many unanswered questions for effective tool invocation.
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?
With 0% schema description coverage for all 4 required parameters, the description provides absolutely no information about what each parameter means or how they should be used. The description doesn't mention any of the parameters (resource_name, resource_uri_pattern, description, output_dir), leaving the agent with no semantic understanding of what values to provide.
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 a specific verb ('Generates') and resource ('template code for a new MCP resource'). It distinguishes from siblings like 'create_prompt_template' and 'create_tool_template' by specifying it's for resources, not prompts or tools. However, it doesn't fully differentiate from 'generate_mcp_boilerplate' which might serve a similar purpose.
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. With siblings like 'create_prompt_template', 'create_tool_template', and 'generate_mcp_boilerplate' that likely serve related template generation purposes, there's no indication of when this specific resource template tool is appropriate versus those other options.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_tool_templateC
Generates template code for a new MCP tool with customizable parameters
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| output_dir | Yes | ||
| parameters | Yes | ||
| tool_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'Generates template code' implies a creation/write operation, the description doesn't specify what happens to existing files, whether it overwrites or creates new files, what permissions are needed, or what the output looks like. For a tool that creates files with 4 required parameters, this is insufficient behavioral context.
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 gets straight to the point. It's appropriately sized for the tool's complexity, with no wasted words or unnecessary elaboration. The structure is front-loaded with the core functionality immediately clear.
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 tool with 4 required parameters, 0% schema description coverage, no annotations, and no output schema, the description is incomplete. It doesn't explain what the generated template includes, what format it produces, how parameters affect the output, or what happens in the output_dir. The description leaves too many open questions about the tool's behavior and output.
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 0%, meaning none of the 4 parameters have descriptions in the schema. The description mentions 'customizable parameters' but doesn't explain what those parameters are or their purposes. It doesn't compensate for the complete lack of parameter documentation in the schema, leaving all 4 required parameters (tool_name, description, parameters, output_dir) semantically undefined.
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: 'Generates template code for a new MCP tool with customizable parameters'. It specifies the verb ('Generates'), resource ('template code'), and scope ('new MCP tool'), but doesn't explicitly differentiate it from sibling tools like 'create_prompt_template' or 'generate_mcp_boilerplate' which might have overlapping functionality.
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. With siblings like 'create_prompt_template', 'create_resource_template', and 'generate_mcp_boilerplate', there's no indication of which tool to choose for different template generation scenarios. The description only states what it does, not when it's appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_doc_enriched_templateC
Generate an MCP server template with context from the documentation
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| doc_context | Yes | ||
| output_dir | Yes | ||
| project_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but provides minimal behavioral insight. It mentions generating a template with documentation context but doesn't disclose what the template includes, how it's structured, whether it overwrites files, or any permissions/rate limits. This is inadequate for a tool with 4 parameters and no output schema.
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 with zero waste. It's appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration.
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 4 parameters with 0% schema coverage, no annotations, and no output schema, the description is incomplete. It doesn't explain what the generated template contains, how parameters interact, or what the output looks like, leaving too many gaps for 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 0%, so the description must compensate but adds no parameter details. It doesn't explain what 'doc_context', 'output_dir', etc., mean or how they're used. With 4 undocumented parameters, this is a significant gap, scoring below the baseline 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 action ('Generate') and resource ('MCP server template'), specifying it uses 'context from the documentation'. It distinguishes from siblings like 'generate_mcp_boilerplate' by mentioning documentation context, but doesn't explicitly contrast with all siblings like 'create_tool_template'.
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?
No explicit guidance on when to use this tool versus alternatives is provided. The description implies usage when documentation context is needed, but doesn't specify scenarios, prerequisites, or exclusions compared to sibling tools like 'create_resource_template' or 'generate_mcp_boilerplate'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_mcp_boilerplateC
Creates a new MCP server project with all the necessary boilerplate files
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| include_prompts | No | ||
| include_resources | No | ||
| output_dir | Yes | ||
| project_name | Yes |
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 files, implying a write operation, but lacks details on permissions, side effects, error handling, or output format. This is inadequate for a tool that likely modifies the filesystem.
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, clear sentence that efficiently conveys the core purpose without unnecessary words. It is front-loaded and appropriately sized, though it could benefit from additional context to improve usability.
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 (5 parameters, no annotations, no output schema), the description is incomplete. It lacks parameter explanations, behavioral details, and output information, making it insufficient for an agent to reliably use the tool without guesswork.
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 0%, so the schema provides no parameter descriptions. The tool description does not mention any parameters, failing to compensate for this gap. Parameters like 'project_name', 'description', 'output_dir', 'include_prompts', and 'include_resources' are left unexplained, hindering effective tool invocation.
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: 'Creates a new MCP server project with all the necessary boilerplate files.' It specifies the verb ('Creates') and resource ('MCP server project'), though it doesn't explicitly differentiate from sibling tools like 'generate_doc_enriched_template' or 'create_tool_template' which might have overlapping purposes.
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, context for project creation, or compare it to sibling tools such as 'create_tool_template' or 'generate_doc_enriched_template', leaving the agent to infer usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_mcp_doc_sectionC
Get a specific section of MCP documentation by key and section title
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| section_title | No |
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 it 'Get[s] a specific section', implying a read-only operation, but doesn't specify if it requires authentication, has rate limits, returns errors for missing keys, or details the output format. This leaves significant gaps for a tool with two parameters.
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 and parameters without any wasted words. It's appropriately sized for the tool's complexity, making it easy 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 complexity (2 parameters, no annotations, no output schema), the description is incomplete. It doesn't cover behavioral aspects like error handling or output structure, and with low schema coverage, it fails to fully explain parameter meanings. This leaves the agent with insufficient context for reliable 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?
The schema description coverage is 0%, so the description must compensate. It mentions 'key and section title', which maps to the two parameters, but doesn't explain what a 'key' represents (e.g., document ID, path) or what 'section_title' entails (e.g., exact match, case sensitivity). This adds minimal value beyond naming the 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 verb 'Get' and the resource 'specific section of MCP documentation', making the purpose understandable. It distinguishes from siblings like 'search_mcp_docs' by focusing on retrieval by key and title rather than searching. However, it doesn't explicitly differentiate from 'save_mcp_docs' or other siblings, keeping it from a perfect score.
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 'search_mcp_docs' or 'save_mcp_docs'. It lacks context on prerequisites, such as needing existing documentation keys, and doesn't mention any exclusions or best practices for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
save_mcp_docsC
Saves MCP documentation text directly and stores it for future reference
| Name | Required | Description | Default |
|---|---|---|---|
| doc_text | Yes | ||
| key | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it 'saves' and 'stores' without detailing permissions, persistence mechanisms, error handling, or response format. It lacks critical behavioral context for a write operation.
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 with no wasted words, clearly front-loaded with the core action. Every word contributes to the tool's purpose.
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 write tool with no annotations, 0% schema coverage, and no output schema, the description is incomplete. It doesn't address how storage works, what 'key' represents, or what happens on success/failure, leaving significant gaps for agent 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 description coverage is 0%, so the description must compensate but only implies parameters through 'MCP documentation text' and 'stores it', without explaining 'key' or 'doc_text' meanings. It adds minimal value beyond the schema's property names.
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 ('saves') and resource ('MCP documentation text'), specifying it stores for future reference. However, it doesn't differentiate from siblings like 'create_resource_template' or 'generate_mcp_boilerplate' which might also involve saving documentation-related content.
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?
No guidance on when to use this tool versus alternatives like 'create_resource_template' or 'search_mcp_docs'. The description implies storage for reference but doesn't specify use cases, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_mcp_docsC
Search through stored MCP documentation for relevant information
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
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 mentions 'search' but doesn't describe how results are returned (e.g., format, ranking, pagination), what constitutes 'relevant information', or any limitations (e.g., search scope, performance). This leaves significant gaps for an agent to understand the tool's behavior.
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 with no wasted words. It's appropriately sized for a simple search tool and front-loads the core purpose without unnecessary elaboration.
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 lack of annotations and output schema, the description is incomplete. It doesn't explain what the search returns (e.g., documents, snippets, metadata), how results are structured, or any behavioral nuances. For a search tool with no structured context, this leaves the agent with insufficient information to use it effectively.
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 schema has 0% description coverage, so the description must compensate. It implies a 'query' parameter is needed for searching but doesn't explain what the query should contain (e.g., keywords, natural language) or any constraints beyond the schema's 'minLength: 1'. This adds minimal semantic value beyond what the schema structure indicates.
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 ('Search through') and resource ('stored MCP documentation'), providing a specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'get_mcp_doc_section', which might retrieve specific sections rather than search across all documentation.
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 'get_mcp_doc_section' or 'save_mcp_docs'. It lacks context about appropriate scenarios, exclusions, or comparisons with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes focused on different aspects of MCP development (templates, documentation, project setup), though 'generate_doc_enriched_template' and 'generate_mcp_boilerplate' could potentially overlap in creating server templates. The descriptions help clarify that one is documentation-enhanced while the other is general boilerplate.
Tools follow a consistent verb_noun pattern with clear actions like 'create', 'generate', 'get', 'save', and 'search'. There's minor deviation with 'generate_doc_enriched_template' using a compound adjective, but overall naming is predictable and readable.
With 8 tools, this is well-scoped for an MCP development assistant. Each tool serves a specific purpose in the workflow (template creation, documentation handling, project setup), and none feel redundant or unnecessary for the server's apparent domain.
The toolset covers key MCP development needs: creating templates for prompts, resources, and tools; accessing and searching documentation; and generating server boilerplate. A minor gap might be the lack of tools for testing or deploying MCP servers, but core development workflows are well-supported.
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
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
MCP Server for JFrog, providing tools for development and artifact management.
An MCP server for deep research or task groups
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP Server simplifies the implementation of the Model Context Protocol by providing a user-friendly API to create custom tools and manage server workflows efficiently.214MIT
- AlicenseAqualityDmaintenanceA meta-MCP server that helps users create new MCP servers through AI guidance, templates, and streamlined workflows, transforming ideas into production-ready implementations with minimal effort.42MIT
- AlicenseNot gradedqualityCmaintenanceA production-ready development scaffold for MCP servers, optimized for Cursor IDE with built-in tools, resources, and prompts that enables quick development of Model Context Protocol servers with 5-minute startup and 10-minute development capabilities.26MIT
- FlicenseCqualityDmaintenanceA minimal MCP server template with hot reload support that helps developers quickly set up and build Model Context Protocol servers with example tool implementations.3
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/CaptainCrouton89/mcp-maker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server