├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── images ├── mcp-wg-icon.png └── mcp-wg-icon_small.png ├── mkdocs.yaml ├── requirements.txt └── wg ├── agent-comms └── rfcs │ └── 04-12-25-difference-between-a2a-and-mcp.md ├── hosting ├── README.md ├── diary │ └── 2025-04-17_meeting_notes.md ├── glossary.md └── research │ └── mcp-transport-comparison.md ├── images └── index.md /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/README.md -------------------------------------------------------------------------------- /images/mcp-wg-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/images/mcp-wg-icon.png -------------------------------------------------------------------------------- /images/mcp-wg-icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/images/mcp-wg-icon_small.png -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/requirements.txt -------------------------------------------------------------------------------- /wg/agent-comms/rfcs/04-12-25-difference-between-a2a-and-mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/wg/agent-comms/rfcs/04-12-25-difference-between-a2a-and-mcp.md -------------------------------------------------------------------------------- /wg/hosting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/wg/hosting/README.md -------------------------------------------------------------------------------- /wg/hosting/diary/2025-04-17_meeting_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/wg/hosting/diary/2025-04-17_meeting_notes.md -------------------------------------------------------------------------------- /wg/hosting/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/wg/hosting/glossary.md -------------------------------------------------------------------------------- /wg/hosting/research/mcp-transport-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol-community/working-groups/HEAD/wg/hosting/research/mcp-transport-comparison.md -------------------------------------------------------------------------------- /wg/images: -------------------------------------------------------------------------------- 1 | ../images -------------------------------------------------------------------------------- /wg/index.md: -------------------------------------------------------------------------------- 1 | ../README.md --------------------------------------------------------------------------------