Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit e753096

Browse files
authored
Merge pull request #22 from Joffref/main
Publish WGs documents as GH pages
2 parents a5bcf6b + 3f3defa commit e753096

8 files changed

Lines changed: 149 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
concurrency:
17+
group: "pages"
18+
cancel-in-progress: false
19+
20+
jobs:
21+
build:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0
28+
29+
- name: Setup Python
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: '3.x'
33+
cache: 'pip'
34+
35+
- name: Install dependencies
36+
run: |
37+
python -m pip install --upgrade pip
38+
pip install -r requirements.txt
39+
40+
- name: Build with MkDocs
41+
run: mkdocs build
42+
43+
- name: Upload artifact
44+
uses: actions/upload-pages-artifact@v3
45+
with:
46+
path: ./site
47+
48+
deploy:
49+
environment:
50+
name: github-pages
51+
url: ${{ steps.deployment.outputs.page_url }}
52+
runs-on: ubuntu-latest
53+
needs: build
54+
steps:
55+
- name: Deploy to GitHub Pages
56+
id: deployment
57+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.venv

mkdocs.yaml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
site_name: MCP Community Working Groups
2+
repo_url: https://github.com/modelcontextprotocol-community/working-groups
3+
plugins:
4+
- search
5+
- include_dir_to_nav
6+
- callouts
7+
- offline
8+
- tags
9+
- mermaid2
10+
- swagger-ui-tag
11+
- git-revision-date-localized:
12+
enable_creation_date: true
13+
- git-authors
14+
15+
docs_dir: wg
16+
17+
markdown_extensions:
18+
- nl2br
19+
- admonition
20+
- pymdownx.details
21+
- pymdownx.superfences
22+
23+
nav:
24+
- Welcome: index.md
25+
- Charter: working_group_charter.md
26+
- MCP Hosting WG: hosting
27+
28+
extra:
29+
generator: false
30+
social:
31+
- icon: fontawesome/brands/github
32+
link: https://github.com/modelcontextprotocol-community
33+
name: GitHub
34+
35+
exclude_docs: |
36+
_*.md
37+
theme:
38+
name: material
39+
features:
40+
- navigation.instant
41+
- navigation.tracking
42+
- navigation.sections
43+
- navigation.expand
44+
- navigation.top
45+
- search.suggest
46+
- search.highlight
47+
- toc.integrate
48+
- navigation.indexes
49+
- navigation.tabs
50+
logo: images/mcp-wg-icon_small.png
51+
favicon: images/mcp-wg-icon_small.png
52+
palette:
53+
- media: "(prefers-color-scheme)"
54+
primary: white
55+
toggle:
56+
icon: material/brightness-auto
57+
name: Switch to light mode
58+
- media: "(prefers-color-scheme: light)"
59+
scheme: default
60+
primary: white
61+
toggle:
62+
icon: material/brightness-7
63+
name: Switch to dark mode
64+
- media: "(prefers-color-scheme: dark)"
65+
scheme: slate
66+
primary: black
67+
toggle:
68+
icon: material/brightness-4
69+
name: Switch to system preference
70+
font:
71+
text: "Roboto"
72+
code: "Roboto Mono"
73+
74+
extra_css:
75+
- stylesheets/extra.css

requirements.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
urllib3<2
2+
mkdocs~=1.6
3+
mkdocs-material~=9.5
4+
mkdocs-multirepo-plugin~=0.8
5+
mkdocs-git-revision-date-localized-plugin~=1.2
6+
mkdocs-git-authors-plugin~=0.1
7+
mkdocs-mermaid2-plugin~=1.1
8+
mkdocs-swagger-ui-tag~=0.6
9+
mkdocs-include-dir-to-nav~=1.2
10+
mkdocs-callouts~=1.16

wg/hosting/diary/2025-04-17_meeting_notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **MCP Hosting Working Group (WG) \- Meeting Notes**
22

3-
**WG proposal:** [MCP Hosting Working Group (WG) – Vision & Roadmap](../)
3+
**WG proposal:** [MCP Hosting Working Group (WG) – Vision & Roadmap](../README.md)
44
**Chairs:** TBD
55
**Discord:** [https://discord.com/invite/dV44HsCKwh](https://discord.com/invite/dV44HsCKwh)
66
**Google group for shared invitations:** [https://groups.google.com/g/mcp-hosting-wg](https://groups.google.com/g/mcp-hosting-wg)
@@ -14,7 +14,7 @@ Suggested agenda:
1414
- Access to documents and meeting notes
1515
- Receive calendar invites for recurring meetings
1616
- Review & discuss WG proposal/scope/charter
17-
- [MCP Hosting Working Group (WG) – Vision & Roadmap](../)
17+
- [MCP Hosting Working Group (WG) – Vision & Roadmap](../README.md)
1818
- Should we reduce the scope of work, given that some areas are already covered by other Community Working Groups?
1919
- Transports:
2020
- It's a good idea to share/open source non-standard implementations \- and a potential way for hosting implementors to value-add.
@@ -38,7 +38,7 @@ Suggested agenda:
3838
- Community Working Groups
3939
1. **[\[Public\] MCP CWG Discord Charter](https://docs.google.com/document/d/1wwniFi4IfXx0FwOdutbDp1-An7LHSygDHt8vqZHTRgM/edit?usp=sharing)**
4040
- Hosting Working Group Introductions
41-
- Review & discuss WG proposal/scope/charter ([MCP Hosting Working Group (WG) – Vision & Roadmap](../))
41+
- Review & discuss WG proposal/scope/charter ([MCP Hosting Working Group (WG) – Vision & Roadmap](../README.md))
4242
- Agree on communication channels
4343
- Discuss initial roadmap themes & priorities
4444
1. Multi-tenancy

wg/images

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../images

wg/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

wg/working_group_charter.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../working_group_charter.md

0 commit comments

Comments
 (0)