From 9cbeddae4cd53ed2e37913b64ee1f3d6b53e5924 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Tue, 24 Mar 2026 19:55:35 -0400 Subject: [PATCH] Update README with server setup instructions Added instructions for spawning a server with uvx and adding the GIQL MCP server to a project. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 20dfca8..fccf9f7 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,18 @@ GIQL includes an [MCP](https://modelcontextprotocol.io/) server that gives LLM-p pip install giql[mcp] ``` +Or spawn a server directly with `uvx`: + +```sh +uvx --from "giql[mcp]" giql-mcp +``` + +To add the GIQL MCP server to a specific project in Claude Code: + +```sh +claude mcp add --scope project giql-mcp -- uvx --from "giql[mcp]" giql-mcp +``` + See [`src/giql/mcp/README.md`](src/giql/mcp/README.md) for configuration and usage details. ## Development