get-mcp-docs
Generate MCP server documentation and configurations to build custom Model Context Protocol servers, integrating AI assistants, tools, and resources.
Instructions
Make an MCP server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the MCP server |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the MCP server",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}