Mt note to project
Skill MeisterLabs/meister-mcp-skills/skills/mt-note-to-project
Convert an existing MeisterTask Note — a spec, brief, or proposal — into a structured MeisterTask project with sections and tasks.From its SKILL.md
npx -y skills add MeisterLabs/meister-mcp-skills --skill mt-note-to-projectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 410 tokens by cl100k_base, as published. Nobody here has run it
Note to project
Use the MeisterTask MCP to read an existing Note and scaffold it into a MeisterTask project. The Note is the spec; this skill turns it into something executable.
Workflow
- Identify the source note:
- Ask the user for the Note URL or title.
- If no URL is provided, use
mt_search(types: ["NOTES"]) to find it. - Fetch the full content with
mt_notes_get.
- Parse the note for project structure:
- Extract: goal or objective, key workstreams or phases, specific tasks or action items, stakeholders, timeline indicators.
- Identify natural section groupings (phases, workstreams, or a standard Backlog / In Progress / Review / Done structure if the note doesn't suggest otherwise).
- Propose the project structure to the user:
- Proposed project name
- Proposed sections (3–5) with brief rationale
- Proposed initial tasks per section (summarised, not exhaustive)
- Confirm before creating anything.
- Create the project:
mt_projects_createwith the proposed name.mt_sections_createfor each section (one call per section).mt_tasks_createfor each task. Trymt_batch_executefirst for 3+ tasks; fall back to individual calls if it fails.
- Link the source note back to the project:
mt_tasks_comments_createon the first task with the Note URL, so the source document is always one click away.
- Return the project URL and a summary of what was created.
Important
Always confirm the proposed structure before creating anything. If the note is ambiguous or underspecified, ask the user to clarify scope rather than guessing. Don't create more than 20 tasks without confirming first. This skill pairs well with mt-project-proposal — use that to write the Note, then this skill to execute it.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.