{"name":"com.tutorializer/tutorializer","slug":"tutorializer","title":null,"description":"Audit localized tutorials and safely maintain project metadata and pronunciation rules.","url":"https://mcp.market/server/tutorializer","rating":null,"grade":"C","score":56,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":20,"ok":20,"last_checked_at":"2026-09-24T06:56:03.786Z","last_ok_at":"2026-09-24T06:56:03.786Z","latency_ms":1226},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://www.tutorializer.com/developers/#mcp","version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://mcp.tutorializer.com/mcp"}],"packages":[],"tools":[{"name":"create_project","description":"Create a Tutorializer project. State-changing and non-idempotent: repeating the call creates another project, so list projects and confirm the intended name first.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":120,"description":"Project name"},"domain":{"type":"string","minLength":1,"maxLength":253,"description":"Optional product domain, for example example.com"},"defaultLocale":{"type":"string","minLength":2,"maxLength":16,"description":"Default locale code, for example en or pt-BR"}},"required":["name"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_speech","description":"Create one Tutorializer voiceover segment for a project. Without a url it synthesizes narration audio from the text with the project's speech provider, which consumes the organization's synthesis credits and is billable. Pass url instead to register audio you already produced. State-changing and non-idempotent: repeating the call creates another segment and synthesizes again.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Project id that will own the voiceover segment"},"text":{"type":"string","minLength":1,"maxLength":5000,"description":"Narration text to speak"},"language":{"type":"string","minLength":2,"maxLength":32,"description":"Language code of the narration, for example en or pt-BR"},"translatedText":{"type":"string","minLength":1,"maxLength":5000,"description":"Optional translation spoken instead of the source text"},"voice":{"type":"string","minLength":1,"maxLength":200,"description":"Optional voice id; defaults to the project's default voice"},"url":{"type":"string","format":"uri","maxLength":2048,"description":"Public https URL of audio you already produced. Supplying it records the segment without synthesizing anything."}},"required":["projectId","text","language"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_tutorial","description":"Create a Tutorializer tutorial definition inside a project. State-changing and non-idempotent: repeating the call creates another tutorial, so list tutorials and confirm the intended name first. This records the tutorial; it does not record or render a video.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Project id that will own the tutorial"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorial name"},"defaultVoice":{"type":"string","minLength":1,"maxLength":200,"description":"Optional voice id used when narration is synthesized for this tutorial"}},"required":["projectId","name"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_video","description":"Register one already-uploaded rendered tutorial video with Tutorializer, recording its locale, device, dimensions and media URLs. State-changing and non-idempotent: repeating the call registers a second output. This does not record, render or upload a file; host the file first and pass its public https URL.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Project id that owns the tutorial"},"tutorialId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorial id this rendered output belongs to"},"url":{"type":"string","format":"uri","maxLength":2048,"description":"Public https URL of the already-uploaded video file"},"locale":{"type":"string","minLength":2,"maxLength":32,"description":"Locale of this render, for example en or pt-BR"},"device":{"type":"string","minLength":1,"maxLength":100,"description":"Device profile, for example computer or smartphone"},"format":{"type":"string","minLength":1,"maxLength":100,"description":"Container or codec, for example mp4 or webm"},"width":{"type":"integer","exclusiveMinimum":0,"maximum":100000},"height":{"type":"integer","exclusiveMinimum":0,"maximum":100000},"duration":{"type":"number","minimum":0,"maximum":86400,"description":"Duration in seconds"},"fileSize":{"type":"number","minimum":0,"maximum":1000000000000000,"description":"File size in bytes"},"chaptersUrl":{"$ref":"#/properties/url","description":"Public https URL of chapters"},"subtitlesUrl":{"$ref":"#/properties/chaptersUrl","description":"Public https URL of a WebVTT subtitle track"},"thumbnailUrl":{"$ref":"#/properties/chaptersUrl","description":"Public https URL of a poster"}},"required":["projectId","tutorialId","url"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"delete_speech","description":"Permanently delete one Tutorializer speech record plus its S3 audio and alignment files. Idempotent, but deleted audio cannot be recovered without synthesizing it again and spending credits.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"speechId":{"type":"string","minLength":1,"maxLength":200,"description":"Speech id to delete"}},"required":["speechId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"delete_tutorial","description":"Permanently delete one Tutorializer tutorial definition. Idempotent, but the definition must be authored again to restore it. Rendered videos and voiceover segments are not deleted with it; remove those separately.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"tutorialId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorial id to delete"}},"required":["tutorialId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"delete_video","description":"Permanently delete one Tutorializer rendered-video record and its primary S3 object. Idempotent, but the render must be uploaded or generated again to restore it.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"videoId":{"type":"string","minLength":1,"maxLength":200,"description":"Rendered video id to delete"}},"required":["videoId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_project","description":"Fetch a single Tutorializer project by immutable id or stable public vanity id. Returns the project metadata, its locale and voice settings, and any pronunciation rules formatted as Markdown.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Project id or stable public vanity id"}},"required":["projectId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_project_localization_summary","description":"Audit one Tutorializer project across configured locales, rendered-video locales/devices, and speech languages. Reads at most 100 rows per content type and marks truncated totals as lower bounds.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorializer project id or stable public vanity id"},"expectedDevices":{"type":"array","items":{"type":"string","minLength":1,"maxLength":40},"minItems":1,"maxItems":10,"description":"Expected output device names; defaults to computer, tablet, and smartphone"}},"required":["projectId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_speech","description":"Fetch a single Tutorializer speech (voiceover segment) by id. Returns the speech metadata plus its full source text and translation formatted as Markdown.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"speechId":{"type":"string","minLength":1,"maxLength":200,"description":"Speech id (uuid)"}},"required":["speechId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_tutorial","description":"Fetch one Tutorializer tutorial definition and a bounded preview of its rendered locale/device outputs. A tutorial does not itself have a locale or status; those vary per video.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"tutorialId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorial id (uuid)"}},"required":["tutorialId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_video","description":"Fetch a single rendered Tutorializer video by id. Returns its tutorial, locale, device, dimensions, primary media URL, chapters, subtitles, and thumbnail metadata.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"videoId":{"type":"string","minLength":1,"maxLength":200,"description":"Video id (uuid)"}},"required":["videoId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_projects","description":"List a bounded page of Tutorializer projects the authenticated user has access to. Returns a Markdown table of id, name, domain, and last edit time.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"limit":{"type":"integer","exclusiveMinimum":0,"maximum":100},"cursor":{"type":"string","maxLength":4096,"description":"Opaque cursor from a previous call"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_speeches","description":"List a bounded page of Tutorializer speeches (voiceover segments). Optionally filter by projectId and language. Returns a safe preview of id, text, language, project, and URL.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","maxLength":200,"description":"Filter speeches by project id"},"language":{"type":"string","maxLength":32,"description":"Filter speeches by language code, e.g. en, es, de"},"limit":{"type":"integer","exclusiveMinimum":0,"maximum":100},"cursor":{"type":"string","maxLength":4096,"description":"Opaque cursor from a previous call"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_tutorials","description":"List Tutorializer tutorial definitions. Optionally filter by projectId. Returns a Markdown table of id, name, project, default voice, and last edit time; rendered locales and devices live on videos.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","maxLength":200,"description":"Filter tutorials by project id"},"limit":{"type":"integer","exclusiveMinimum":0,"maximum":100},"cursor":{"type":"string","maxLength":4096,"description":"Opaque cursor from a previous call"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_videos","description":"List rendered Tutorializer videos. Optionally filter by projectId, tutorialId, locale, and device. Returns a Markdown table of output dimensions, locale, device, format, and URL.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","maxLength":200,"description":"Filter videos by project id"},"tutorialId":{"type":"string","maxLength":200,"description":"Filter videos by tutorial id"},"locale":{"type":"string","maxLength":32,"description":"Filter by locale, e.g. en, es"},"device":{"type":"string","maxLength":100,"description":"Filter by device, e.g. desktop, smartphone"},"limit":{"type":"integer","exclusiveMinimum":0,"maximum":100},"cursor":{"type":"string","maxLength":4096,"description":"Opaque cursor from a previous call"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"remove_pronunciation_rule","description":"Remove one project pronunciation rule and synchronize its ElevenLabs dictionary. Destructive but idempotent: a missing rule is a no-op. Existing speech audio is not regenerated automatically.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorializer project id"},"word":{"type":"string","minLength":1,"maxLength":120,"description":"Exact word or phrase whose pronunciation rule should be removed"}},"required":["projectId","word"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"set_pronunciation_rule","description":"Add or replace one project pronunciation rule and synchronize its ElevenLabs pronunciation dictionary. Repeating an identical rule is a no-op.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorializer project id"},"word":{"type":"string","minLength":1,"maxLength":120,"description":"Word or phrase to match"},"phonemes":{"type":"string","minLength":1,"maxLength":500,"description":"Phonetic pronunciation"},"alphabet":{"type":"string","enum":["ipa","cmu"],"description":"Phonetic alphabet; defaults to ipa"}},"required":["projectId","word","phonemes"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"show_project_overview","description":"Render a bounded tenant-scoped Tutorializer project snapshot with tutorial, video, and voiceover counts. Use this after listing projects or when the user provides an immutable project id or stable public vanity id.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorializer project id or stable public vanity id to render"}},"required":["projectId"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"update_project","description":"Change a Tutorializer project’s name, domain, locales, default voice or narration speed. Reads the stored project first and rewrites the whole record, so unspecified fields keep their current values. The locales list is a complete replacement, and removing a locale stops it being expected by the localization audit. Submitting the values it already has is a no-op.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"projectId":{"type":"string","minLength":1,"maxLength":200,"description":"Project id or stable public vanity id"},"name":{"type":"string","minLength":1,"maxLength":120,"description":"New name"},"domain":{"type":"string","minLength":1,"maxLength":253,"description":"New product domain, for example example.com"},"defaultLocale":{"type":"string","minLength":2,"maxLength":16,"description":"New default locale, for example en or pt-BR"},"locales":{"type":"array","items":{"type":"string","minLength":2,"maxLength":32},"minItems":1,"maxItems":100,"description":"Complete replacement list of locales the project publishes. Locales absent from this list stop being expected."},"defaultVoice":{"type":"string","minLength":1,"maxLength":200,"description":"New default voice id for synthesized narration"},"speed":{"type":"number","minimum":0.1,"maximum":10,"description":"New narration speed multiplier"}},"required":["projectId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"update_speech","description":"Change the text, translation, language or voice of one Tutorializer voiceover segment. Every one of those fields determines the audio, so a real change re-synthesizes the segment with the project's speech provider, consumes synthesis credits and replaces the previous audio. Submitting the values it already has is a no-op that synthesizes nothing.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"speechId":{"type":"string","minLength":1,"maxLength":200,"description":"Voiceover segment id to edit"},"text":{"type":"string","minLength":1,"maxLength":5000,"description":"New narration text"},"translatedText":{"type":"string","minLength":1,"maxLength":5000,"description":"New translation spoken instead of the source text"},"language":{"type":"string","minLength":2,"maxLength":32,"description":"New language"},"voice":{"type":"string","minLength":1,"maxLength":200,"description":"New voice id"}},"required":["speechId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"update_tutorial","description":"Rename a Tutorializer tutorial or change the default voice used for its narration. Reads the stored tutorial first and rewrites the whole record, so unspecified fields keep their current values. Submitting the values it already has is a no-op.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"tutorialId":{"type":"string","minLength":1,"maxLength":200,"description":"Tutorial id to edit"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"New tutorial name"},"defaultVoice":{"type":"string","minLength":1,"maxLength":200,"description":"New default voice id for synthesized narration"}},"required":["tutorialId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"update_video","description":"Correct the metadata of one registered Tutorializer rendered video, such as its locale, device, dimensions or media URLs. Reads the stored record first and rewrites the whole document, so unspecified fields keep their current values. Submitting the values it already has is a no-op.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"videoId":{"type":"string","minLength":1,"maxLength":200,"description":"Rendered video id"},"url":{"type":"string","format":"uri","maxLength":2048,"description":"New public https URL of the video file"},"locale":{"type":"string","minLength":2,"maxLength":32},"device":{"type":"string","minLength":1,"maxLength":100},"format":{"type":"string","minLength":1,"maxLength":100},"width":{"type":"integer","exclusiveMinimum":0,"maximum":100000},"height":{"type":"integer","exclusiveMinimum":0,"maximum":100000},"duration":{"type":"number","minimum":0,"maximum":86400},"fileSize":{"type":"number","minimum":0,"maximum":1000000000000000},"chaptersUrl":{"$ref":"#/properties/url"},"subtitlesUrl":{"$ref":"#/properties/url"},"thumbnailUrl":{"$ref":"#/properties/url"}},"required":["videoId"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":56,"grade":"C","scanned_at":"2026-09-23T11:53:58.140Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-23T11:53:58.090Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 2536ms"]},"poisoning":{"score":15,"max":15,"notes":["23 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 12 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.tutorializer.com/mcp","reachable":true,"authRequired":false,"latencyMs":2536,"serverInfo":{"name":"tutorializer-mcp","version":"0.2.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://www.imagelato.com/images/favicon-tutorializer-916eca00-256w.png","source":"site","width":256,"height":256},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}