You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development/roadmap.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Our plans for evolving Model Context Protocol
5
5
6
6
<Info>Last updated: **2025-03-27**</Info>
7
7
8
-
The Model Context Protocol is rapidly evolving. This page outlines our current thinking on key priorities and direction for approximately **the next six months**, though these may change significantly as the project develops. To see what's changed recently, check out the **[specification changelog](https://spec.modelcontextprotocol.io/specification/2025-03-26/changelog/)**.
8
+
The Model Context Protocol is rapidly evolving. This page outlines our current thinking on key priorities and direction for approximately **the next six months**, though these may change significantly as the project develops. To see what's changed recently, check out the **[specification changelog](/specification/2025-03-26/changelog/)**.
9
9
10
10
<Note>The ideas presented here are not commitments—we may solve these challenges differently than described, or some may not materialize at all. This is also not an _exhaustive_ list; we may incorporate work that isn't mentioned here.</Note>
Copy file name to clipboardExpand all lines: docs/docs/concepts/architecture.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ The transport layer handles the actual communication between clients and servers
109
109
- Uses Server-Sent Events for server-to-client messages
110
110
- HTTP POST for client-to-server messages
111
111
112
-
All transports use [JSON-RPC](https://www.jsonrpc.org/) 2.0 to exchange messages. See the [specification](https://spec.modelcontextprotocol.io) for detailed information about the Model Context Protocol message format.
112
+
All transports use [JSON-RPC](https://www.jsonrpc.org/) 2.0 to exchange messages. See the [specification](/specification/) for detailed information about the Model Context Protocol message format.
Copy file name to clipboardExpand all lines: docs/sdk/java/mcp-server.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -270,7 +270,7 @@ Supported logging levels (in order of increasing severity): DEBUG (0), INFO (1),
270
270
271
271
### Tool Specification
272
272
273
-
The Model Context Protocol allows servers to [expose tools](https://spec.modelcontextprotocol.io/specification/2024-11-05/server/tools/) that can be invoked by language models.
273
+
The Model Context Protocol allows servers to [expose tools](/specification/2024-11-05/server/tools/) that can be invoked by language models.
274
274
The Java SDK allows implementing a Tool Specifications with their handler functions.
275
275
Tools enable AI models to perform calculations, access external APIs, query databases, and manipulate files:
276
276
@@ -381,7 +381,7 @@ The second arguments is a `McpSchema.ReadResourceRequest`.
381
381
382
382
### Prompt Specification
383
383
384
-
As part of the [Prompting capabilities](https://spec.modelcontextprotocol.io/specification/2024-11-05/server/prompts/), MCP provides a standardized way for servers to expose prompt templates to clients.
384
+
As part of the [Prompting capabilities](/specification/2024-11-05/server/prompts/), MCP provides a standardized way for servers to expose prompt templates to clients.
385
385
The Prompt Specification is a structured template for AI model interactions that enables consistent message formatting, parameter substitution, context injection, response formatting, and instruction templating.
386
386
387
387
<Tabs>
@@ -422,7 +422,7 @@ The first argument is `McpAsyncServerExchange` for client interaction, and the s
422
422
423
423
### Using Sampling from a Server
424
424
425
-
To use [Sampling capabilities](https://spec.modelcontextprotocol.io/specification/2024-11-05/client/sampling/), connect to a client that supports sampling.
425
+
To use [Sampling capabilities](/specification/2024-11-05/client/sampling/), connect to a client that supports sampling.
426
426
No special server configuration is needed, but verify client sampling support before making requests.
427
427
Learn about [client sampling support](./mcp-client#sampling-support).
0 commit comments