docs: add guide on building custom extensions (#806)

This commit is contained in:
Salman Mohammed
2025-01-27 12:36:12 -05:00
committed by GitHub
parent 805de9e1a2
commit 174e1b33d0
14 changed files with 878 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
[project]
name = "mcp-wiki"
version = "0.1.0"
description = "MCP Server for Wikipedia"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"beautifulsoup4>=4.12.3",
"html2text>=2024.2.26",
"mcp[cli]>=1.2.0",
"requests>=2.32.3",
]
[project.scripts]
mcp-wiki = "mcp_wiki:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"