Skip to content

Commit 58c1ada

Browse files
authored
Merge branch 'main' into fix/list-tasks-auth
2 parents 8d23a6c + d7b83a4 commit 58c1ada

49 files changed

Lines changed: 3633 additions & 1857 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "modelcontextprotocol",
3+
"owner": {
4+
"name": "Model Context Protocol"
5+
},
6+
"metadata": {
7+
"description": "Official Claude Code plugins for the Model Context Protocol"
8+
},
9+
"plugins": [
10+
{
11+
"name": "mcp-spec",
12+
"source": "./plugins/mcp-spec",
13+
"description": "Skills for researching and contributing to the MCP specification"
14+
}
15+
]
16+
}

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ package-lock.json linguist-generated=true
22
schema/*/schema.json linguist-generated=true
33
docs/specification/*/schema.md linguist-generated=true
44
docs/specification/*/schema.mdx linguist-generated=true
5+
docs/community/seps/index.mdx linguist-generated=true
6+
docs/community/seps/[0-9]*.mdx linguist-generated=true

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
# Authorization-related files - @auth team should be notified
1111
/docs/specification/**/authorization.mdx @modelcontextprotocol/core-maintainers @modelcontextprotocol/auth-wg
1212
/docs/specification/**/security_best_practices.mdx @modelcontextprotocol/core-maintainers @modelcontextprotocol/auth-wg
13+
/docs/docs/tutorials/security/security_best_practices.mdx @modelcontextprotocol/core-maintainers @modelcontextprotocol/auth-wg

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ updates:
44
directory: '/'
55
schedule:
66
interval: 'weekly'
7+
8+
- package-ecosystem: 'npm'
9+
directory: '/'
10+
schedule:
11+
interval: 'weekly'

.github/workflows/sep-lifecycle-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
LOG_LEVEL: info
7373

7474
- name: Upload logs
75-
uses: actions/upload-artifact@v6
75+
uses: actions/upload-artifact@v7
7676
if: always()
7777
with:
7878
name: automation-logs-manual-${{ github.run_id }}

.github/workflows/sep-lifecycle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
LOG_LEVEL: info
104104

105105
- name: Upload logs
106-
uses: actions/upload-artifact@v6
106+
uses: actions/upload-artifact@v7
107107
if: always()
108108
with:
109109
name: automation-logs-${{ github.run_id }}

.github/workflows/sep-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions: {}
1111
jobs:
1212
discord-reminder:
1313
runs-on: ubuntu-latest
14-
14+
if: github.repository == 'modelcontextprotocol/modelcontextprotocol'
1515
steps:
1616
- name: Post Discord reminder
1717
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules/
33
.DS_Store
44
.idea/
5+
.jj

AGENTS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ This repository contains the MCP specification, documentation, and blog.
99
- `docs/specification/` - MCP specification (more formal, versioned)
1010
- `blog/` - Hugo blog (`npm run serve:blog`)
1111

12+
### Documentation Guidelines
13+
14+
- When creating flowcharts, and graphs to visualize aspect of the protocol, use mermaid diagrams where
15+
possible.
16+
- When writing tables, ensure column headers and columns are aligned with whitespace.
17+
- Before pushing or creating PR's ensure that `npm run prep` is free of warnings and errors.
18+
1219
## Specification Versioning
1320

1421
Specifications use **date-based versioning** (YYYY-MM-DD), not semantic versioning:

MAINTAINERS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,15 @@ This document lists current maintainers in the Model Context Protocol project.
111111
- [Cliff Hall](https://github.com/cliffhall)
112112
- [Konstantin Konstantinov](https://github.com/KKonstantinov)
113113
- [Ola Hungerford](https://github.com/olaservo)
114+
- [Bob Dickinson](https://github.com/BobDickinson)
114115

115116
### Registry
116117

117118
- [Toby Padilla](https://github.com/toby)
118119
- [Tadas Antanavicius](https://github.com/tadasant)
119120
- [Adam Jones](https://github.com/domdomegg)
120121
- [Radoslav (Rado) Dimitrov](https://github.com/rdimitrov)
122+
- [Bob Dickinson](https://github.com/BobDickinson)
121123

122124
### MCPB (Model Context Protocol Bundle)
123125

@@ -197,6 +199,10 @@ This document lists current maintainers in the Model Context Protocol project.
197199
- [Liad Yosef](https://github.com/liady)
198200
- [Ido Salomon](https://github.com/idosal)
199201

202+
### Primitive Grouping Interest Group
203+
204+
- [Tapan Chugh](https://github.com/chughtapan)
205+
200206
## About This Document
201207

202208
This document is updated by the MCP maintainers and reflects the current

0 commit comments

Comments
 (0)