Tweak Python server package names

This commit is contained in:
Justin Spahr-Summers
2024-11-21 20:52:56 +00:00
parent d144a53b25
commit d68341d985
2 changed files with 4 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
[project] [project]
name = "mcp-git" name = "mcp-server-git"
version = "0.2.0" version = "0.2.0"
description = "A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs" description = "A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs"
readme = "README.md" readme = "README.md"

View File

@@ -1,16 +1,14 @@
[project] [project]
name = "sqlite" name = "mcp-server-sqlite"
version = "0.1.0" version = "0.1.0"
description = "A simple SQLite MCP server" description = "A simple SQLite MCP server"
readme = "README.md" readme = "README.md"
requires-python = ">=3.11" requires-python = ">=3.11"
dependencies = [ dependencies = ["mcp>=0.9.1"]
"mcp>=0.9.1",
]
[build-system] [build-system]
requires = ["hatchling"] requires = ["hatchling"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[project.scripts] [project.scripts]
sqlite = "sqlite:main" sqlite = "sqlite:main"