pyproject.toml•546 B
[project]
name = "basic-mcp"
version = "0.1.0"
description = "A simple MCP server with Wikipedia and DDGS search capabilities"
authors = []
dependencies = [
"fastmcp",
"wikipedia",
"duckduckgo-search",
"trafilatura",
]
requires-python = ">=3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/basic_mcp"]
[tool.hatch.build]
only-packages = true
[project.scripts]
basic-mcp = "basic_mcp.main:main"