docs: Fix last missing links in context servers docs (#16539)
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run

Release Notes:

- N/A
This commit is contained in:
jvmncs 2024-08-20 14:29:28 -04:00 committed by GitHub
parent ff7017c308
commit d2a7caa84b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ If slash commands allow you to extend the Assistant with new capabilities, Conte
## Using a Context Server
To configure Zed to use a Context Server, add the command required to start the server to your [settings](./configuring-zed.md):
To configure Zed to use a Context Server, add the command required to start the server to your [settings](../configuring-zed.md):
```json
{
@ -24,11 +24,7 @@ To configure Zed to use a Context Server, add the command required to start the
## Developing a Context Server
A Context Server is a server listening for JSON-RPC requests over stdin/stdout. The server must follow the Model Context Protocol (defined below) in order to declare its capabilities such that Zed can make use of them.
### Implementing a Context Server
Context Servers are JSON-RPC servers communicating over stdio. Context Servers must comply with the [Model Context Protocol (MCP)](./model_context_protocol).
Context Servers are JSON-RPC servers communicating over stdio. Context Servers must comply with the [Model Context Protocol (MCP)](./model-context-protocol.md).
See [python-context-server](https://github.com/zed-industries/python-context-server) for a minimal working example.