Files
mcpdoc/pyproject.toml
Lance Martin 921fe07dd0 release 0.0.5: Update / improve the tool descriptions (#8)
Currently I add this workflow to Cursor. We should embed this in the
tool itself.

```
use the langgraph-docs-mcp server to answer any LangGraph questions -- 
+ call list_doc_sources tool to get the available llms.txt file
+ call fetch_docs tool to read it
+ reflect on the urls in llms.txt 
+ reflect on the input question 
+ call fetch_docs on any urls relevant to the question
+ use this to answer the question
```

---------

Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
2025-03-21 14:40:35 -04:00

35 lines
608 B
TOML

[project]
name = "mcpdoc"
version = "0.0.5"
description = "Server llms-txt documentation over MCP"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"httpx>=0.28.1",
"markdownify>=1.1.0",
"mcp[cli]>=1.4.1",
"pyyaml>=6.0.1",
]
[project.scripts]
mcpdoc = "mcpdoc.cli:main"
[dependency-groups]
test = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"pytest-socket>=0.7.0",
"pytest-timeout>=2.3.1",
"ruff>=0.9.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"