feat: add script and workflow to render SEPs as documentation#2087
Merged
feat: add script and workflow to render SEPs as documentation#2087
Conversation
Add a system to automatically render Specification Enhancement Proposals (SEPs) as nicely formatted documentation pages on the website, similar to how Python renders PEPs. Changes: - Add scripts/render-seps.ts to parse SEPs and generate MDX documentation - Add GitHub workflow to auto-render SEPs when seps/ directory changes - Generate SEP index page with tabular overview at /community/seps/ - Generate individual SEP pages with metadata badges and formatted content - Add badge snippet component for status/type badges - Update docs.json navigation to include SEPs section under Community tab - Add npm scripts: generate:seps and check:seps
Address GitHub Advanced Security comment by adding explicit permissions block to the workflow. The workflow requires 'contents: write' to push auto-rendered SEP documentation on the main branch. Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 0 Claude-Permission-Prompts: 3 Claude-Escapes: 0
Member
Author
|
Addressed the GitHub Advanced Security finding by adding explicit |
The render-seps script now automatically formats generated MDX files with Prettier to ensure they pass the format check. In check mode, it compares files after applying Prettier formatting to handle any formatting differences. Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 0 Claude-Permission-Prompts: 1 Claude-Escapes: 0
Use semi-transparent backgrounds (500/20) and brighter text (400) in dark mode for better contrast and readability instead of the previous dark backgrounds (900) with light text (200). Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 0 Claude-Permission-Prompts: 0 Claude-Escapes: 0
Mintlify doesn't support all Tailwind dark: classes, so switch to inline CSS with explicit hex colors. Targets multiple dark mode selectors (.dark, [data-theme="dark"], prefers-color-scheme) for compatibility. Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 5 Claude-Permission-Prompts: 6 Claude-Escapes: 0
Co-Authored-By: Claude <noreply@anthropic.com>
shivankgoel
pushed a commit
to shivankgoel/modelcontextprotocol
that referenced
this pull request
Feb 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a system to automatically render Specification Enhancement Proposals
(SEPs) as nicely formatted documentation pages on the website, similar to
how Python renders PEPs.
Changes: