Skip to content

Commit 6abc9bb

Browse files
Merge branch 'main' into feat/tasks
2 parents 9b717e2 + 3face10 commit 6abc9bb

File tree

10 files changed

+1637
-84
lines changed

10 files changed

+1637
-84
lines changed

.prettierrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"printWidth": 140,
3+
"tabWidth": 4,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "none",
8+
"bracketSpacing": true,
9+
"bracketSameLine": false,
10+
"proseWrap": "always",
11+
"arrowParens": "avoid",
12+
"overrides": [
13+
{
14+
"files": "**/*.md",
15+
"options": {
16+
"printWidth": 280
17+
}
18+
}
19+
]
20+
}

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ This document lists current maintainers in the Model Context Protocol project.
5858

5959
- [Inna Harper](https://github.com/ihrpr)
6060
- [Jerome Swannack](https://github.com/jerome3o)
61-
- [Samuel Colvin](https://github.com/samuelcolvin)
6261
- [Marcelo Trylesinski](https://github.com/Kludex)
62+
- [Max Isbey](https://github.com/maxisbey)
6363

6464
### TypeScript SDK
6565

docs/specification/draft/changelog.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ the previous revision, [2025-06-18](/specification/2025-06-18).
2121

2222
## Other schema changes
2323

24+
1. Decouple request payloads from RPC method definitions into standalone parameter schemas. ([SEP-1319](https://github.com/modelcontextprotocol/specification/issues/1319), PR [#1284](https://github.com/modelcontextprotocol/specification/pull/1284))
25+
2426
## Full changelog
2527

2628
For a complete list of all changes that have been made since the last protocol revision,

docs/specification/draft/schema.mdx

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eslint.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import eslint from "@eslint/js";
2+
import tseslint from "typescript-eslint";
3+
import eslintConfigPrettier from "eslint-config-prettier/flat";
4+
import { defineConfig } from "eslint/config";
5+
6+
export default defineConfig([
7+
eslint.configs.recommended,
8+
...tseslint.configs.recommended,
9+
eslintConfigPrettier,
10+
]);

0 commit comments

Comments
 (0)