[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "markdown-frontmatter-mcp"
version = "0.1.0"
description = "MCP server for querying Markdown files by front matter metadata (tags, dates)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Wes Wagner", email = "wes@rarelydecaf.com" }
]
keywords = [
"mcp",
"model-context-protocol",
"markdown",
"obsidian",
"frontmatter",
"knowledge-base"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/caffeinatedwes/markdown-frontmatter-mcp"
Repository = "https://github.com/caffeinatedwes/markdown-frontmatter-mcp"
Issues = "https://github.com/caffeinatedwes/markdown-frontmatter-mcp/issues"
[project.scripts]
markdown-frontmatter-mcp = "server:main"
[tool.hatch.build.targets.wheel]
packages = ["src"]