From d68341d9853c9cf932cc46ba886aed27bf8a82ad Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Thu, 21 Nov 2024 20:52:56 +0000 Subject: [PATCH] Tweak Python server package names --- src/git/pyproject.toml | 2 +- src/sqlite/pyproject.toml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/git/pyproject.toml b/src/git/pyproject.toml index 3fc2ae8c..86dad110 100644 --- a/src/git/pyproject.toml +++ b/src/git/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "mcp-git" +name = "mcp-server-git" version = "0.2.0" description = "A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs" readme = "README.md" diff --git a/src/sqlite/pyproject.toml b/src/sqlite/pyproject.toml index b0b1b2b6..8cba887c 100644 --- a/src/sqlite/pyproject.toml +++ b/src/sqlite/pyproject.toml @@ -1,16 +1,14 @@ [project] -name = "sqlite" +name = "mcp-server-sqlite" version = "0.1.0" description = "A simple SQLite MCP server" readme = "README.md" requires-python = ">=3.11" -dependencies = [ - "mcp>=0.9.1", -] +dependencies = ["mcp>=0.9.1"] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project.scripts] -sqlite = "sqlite:main" \ No newline at end of file +sqlite = "sqlite:main"