initial checkin

This commit is contained in:
Markus Pfundstein
2024-11-29 12:07:37 +01:00
commit 0a804c6cc9
5 changed files with 291 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "mcp-knowledge-base"
version = "0.1.0"
description = "Example MCP server to create a knowledge-base"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mcp>=1.0.0",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
]
[[project.authors]]
name = "Markus Pfundstein"
email = "markus@life-electronic.nl"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
mcp-knowledge-base = "mcp_knowledge_base:main"