From 73ba32a0a12324a782c94df2caeb2ad116851636 Mon Sep 17 00:00:00 2001 From: Luiz Costa Date: Wed, 24 Sep 2025 00:01:33 -0300 Subject: [PATCH] Add Claude Code installation --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27377a4..52bf190 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,16 @@ Standard config works in most of the tools: } ``` +### Install on Claude Code + +```bash +claude mcp add ghost --scope user \ + -e GHOST_URL=http://localhost:2368 \ + -e GHOST_CONTENT_API_KEY=your_content_api_key_here \ + -e GHOST_ADMIN_API_KEY=your_admin_api_key_here \ + -- uvx --refresh --from git+https://git.thenets.org/luiz/ghost-mcp.git ghost-mcp +``` + ### Creating API Keys To create the required API keys for your Ghost instance: @@ -53,7 +63,7 @@ make setup # This will start Ghost, create tokens, and configure everything - **Configuration Management**: Environment variables with precedence - **Development Tools**: Complete Docker setup and automation scripts -## 🚀 Quick Start +## 🛠️ Development ### Prerequisites @@ -71,11 +81,11 @@ cd ghost-mcp make setup # Or step by step: -make install-uv # Install uv package manager +make install-uv # Install uv package manager make install # Install Python dependencies make start-ghost # Start Ghost and database make setup-tokens # Extract API keys and create .env -make test # Test the implementation +make test # Test the implementation ``` ### Usage