All checks were successful
Build and Push Outline MCP Docker Image / build (push) Successful in 15s
26 lines
485 B
TOML
26 lines
485 B
TOML
[project]
|
|
name = "outline-mcp"
|
|
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 = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.uv]
|
|
python-version = "3.11"
|