-
Notifications
You must be signed in to change notification settings - Fork 784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add mkdocs #367
Add mkdocs #367
Conversation
mkdocs.yml
Outdated
palette: | ||
- media: "(prefers-color-scheme)" | ||
scheme: default | ||
primary: pink | ||
accent: pink | ||
toggle: | ||
icon: material/lightbulb | ||
name: "Switch to light mode" | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
primary: pink | ||
accent: pink | ||
toggle: | ||
icon: material/lightbulb-outline | ||
name: "Switch to dark mode" | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
primary: pink | ||
accent: pink | ||
toggle: | ||
icon: material/lightbulb-auto-outline | ||
name: "Switch to system preference" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You choose... 😅
@@ -35,7 +36,7 @@ async def list_roots_callback( | |||
return callback_return | |||
|
|||
@server.tool("test_list_roots") | |||
async def test_list_roots(context: Context, message: str): # type: ignore[reportUnknownMemberType] | |||
async def test_list_roots(context: Context[ServerSession], message: str): # type: ignore[reportUnknownMemberType] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated, need to revert this.
- name: "Set up Python" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: ".python-version" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to change this when my other PR gets merged.
We need to add a job to build the docs on each PR as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you
mkdocs.yml
Outdated
primary: pink | ||
accent: pink |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should probably choose black / white since that seems to accidentally be the MCP
No description provided.