Anki MCP Server

create_note_type

Create a new note type

Input Schema

NameRequiredDescriptionDefault
cssNoCSS styling for the note type
fieldsYesField names for the note type
nameYesName of the new note type
templatesYesCard templates

Input Schema (JSON Schema)

{ "properties": { "css": { "description": "CSS styling for the note type", "type": "string" }, "fields": { "description": "Field names for the note type", "items": { "type": "string" }, "type": "array" }, "name": { "description": "Name of the new note type", "type": "string" }, "templates": { "description": "Card templates", "items": { "properties": { "back": { "type": "string" }, "front": { "type": "string" }, "name": { "type": "string" } }, "required": [ "name", "front", "back" ], "type": "object" }, "type": "array" } }, "required": [ "name", "fields", "templates" ], "type": "object" }