From 78fed7850afc054b6ffb17d04e51b53a8e761e44 Mon Sep 17 00:00:00 2001 From: qpd-v Date: Thu, 12 Dec 2024 21:52:00 -0600 Subject: [PATCH] Initial commit v0.1.4 --- .gitignore | 4 ++++ package.json | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b5e3d14..f791a20 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,7 @@ qdrant_storage/ # Test coverage coverage/ + +# Local documentation files +MCPguide.txt +MCPspecification.txt diff --git a/package.json b/package.json index 2d80c0b..5424bec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@qpd-v/mcp-server-ragdocs", - "version": "0.1.3", + "version": "0.1.4", "description": "A Model Context Protocol server for fetching and storing documentation in a vector database, enabling semantic search and retrieval to augment LLM capabilities with relevant documentation context.", "private": false, "type": "module", @@ -8,7 +8,9 @@ "@qpd-v/mcp-server-ragdocs": "./build/index.js" }, "files": [ - "build" + "build", + "README.md", + "LICENSE" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",