Initial commit: Outline MCP server with hybrid light pattern
Some checks failed
Build and Push Docker Image / build (push) Failing after 0s

This commit is contained in:
Ben
2025-12-30 19:36:17 +00:00
parent 6089596202
commit 5da443cef7
9 changed files with 1110 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "outline-mcp-custom"
version = "0.1.0"
description = "MCP server for Outline knowledge base"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.0",
"starlette>=0.38.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"