Skip to content

Commit 9928f1d

Browse files
authored
docs: Fix grammar and typos in learn/architecture.mdx (modelcontextprotocol#1285)
* Fix typo in architecture.mdx * Update architecture.mdx * Update architecture.mdx
1 parent f338b48 commit 9928f1d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/docs/learn/architecture.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ where it runs. MCP servers can execute locally or remotely. For example, when
6868
Claude Desktop launches the [filesystem
6969
server](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem),
7070
the server runs locally on the same machine because it uses the STDIO
71-
transport. This is commonly referred to as a "local" MCP server. The offical
71+
transport. This is commonly referred to as a "local" MCP server. The official
7272
[Sentry MCP server](https://docs.sentry.io/product/sentry-mcp/) runs on the
7373
Sentry platform, and uses the Streamable HTTP transport. This is commonly
7474
referred to as a "remote" MCP server.
@@ -77,7 +77,7 @@ referred to as a "remote" MCP server.
7777

7878
MCP consists of two layers:
7979

80-
- **Data layer**: Defines the JSON-RPC based protocol for client-server communication, including lifecycle management, core primitives, such as tools, resources, prompts and notifications.
80+
- **Data layer**: Defines the JSON-RPC based protocol for client-server communication, including lifecycle management, and core primitives, such as tools, resources, prompts and notifications.
8181
- **Transport layer**: Defines the communication mechanisms and channels that enable data exchange between clients and servers, including transport-specific connection establishment, message framing, and authorization.
8282

8383
Conceptually the data layer is the inner layer, while the transport layer is the outer layer.
@@ -88,7 +88,7 @@ The data layer implements a [JSON-RPC 2.0](https://www.jsonrpc.org/) based excha
8888
This layer includes:
8989

9090
- **Lifecycle management**: Handles connection initialization, capability negotiation, and connection termination between clients and servers
91-
- **Server features**: Enables servers to provides core functionality including tools for AI actions, resources for context data, and prompts for interaction templates from to the client
91+
- **Server features**: Enables servers to provides core functionality including tools for AI actions, resources for context data, and prompts for interaction templates from and to the client
9292
- **Client features**: Enables servers to ask the client to sample from the host LLM, elicit input from the user, and log messages to the client
9393
- **Utility features**: Supports additional capabilities like notifications for real-time updates and progress tracking for long-running operations
9494

@@ -105,9 +105,9 @@ The transport layer abstracts communication details from the protocol layer, ena
105105

106106
### Data Layer Protocol
107107

108-
A core part of MCP is defining the schema and semantics between MCP clients and MCP servers. Developers will likely find the the data layer — in particular, the set of [primitives](#primitives) — to be the most interesting part of MCP. It is the part of MCP that defines the ways developers can share context from MCP servers to MCP clients.
108+
A core part of MCP is defining the schema and semantics between MCP clients and MCP servers. Developers will likely find the data layer — in particular, the set of [primitives](#primitives) — to be the most interesting part of MCP. It is the part of MCP that defines the ways developers can share context from MCP servers to MCP clients.
109109

110-
MCP uses [JSON-RPC 2.0](https://www.jsonrpc.org/) as it's underlying RPC protocol. Client and servers send requests to each other and respond accordingly. Notifications can be used when no response is required.
110+
MCP uses [JSON-RPC 2.0](https://www.jsonrpc.org/) as its underlying RPC protocol. Client and servers send requests to each other and respond accordingly. Notifications can be used when no response is required.
111111

112112
#### Lifecycle management
113113

@@ -132,8 +132,8 @@ For more details about server primitives see [server concepts](./server-concepts
132132

133133
MCP also defines primitives that _clients_ can expose. These primitives allow MCP server authors to build richer interactions.
134134

135-
- **Sampling**: Allows servers to request language model completions from the client's AI application. This is useful when servers authors want access to a language model, but want to stay model independent and not include a language model SDK in their MCP server. They can use the `sampling/complete` method to request a language model completion from the client's AI application.
136-
- **Elicitation**: Allows servers to request additional information from users. This is useful when servers authors want to get more information from the user, or ask for confirmation of an action. They can use the `elicitation/request` method to request additional information from the user.
135+
- **Sampling**: Allows servers to request language model completions from the client's AI application. This is useful when servers' authors want access to a language model, but want to stay model independent and not include a language model SDK in their MCP server. They can use the `sampling/complete` method to request a language model completion from the client's AI application.
136+
- **Elicitation**: Allows servers to request additional information from users. This is useful when servers' authors want to get more information from the user, or ask for confirmation of an action. They can use the `elicitation/request` method to request additional information from the user.
137137
- **Logging**: Enables servers to send log messages to clients for debugging and monitoring purposes.
138138

139139
For more details about client primitives see [client concepts](./client-concepts).

0 commit comments

Comments
 (0)