From d2a7caa84be3ed884622b82d78bbe068f773c442 Mon Sep 17 00:00:00 2001 From: jvmncs <7891333+jvmncs@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:29:28 -0400 Subject: [PATCH] docs: Fix last missing links in context servers docs (#16539) Release Notes: - N/A --- docs/src/assistant/context-servers.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/src/assistant/context-servers.md b/docs/src/assistant/context-servers.md index bbe4d6c960..730086699d 100644 --- a/docs/src/assistant/context-servers.md +++ b/docs/src/assistant/context-servers.md @@ -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.