forked from Rai220/think-mcp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "think_mcp"
version = "0.1.16"
description = "MCP server providing a 'think' tool for structured reasoning, inspired by Anthropic's Claude 'think' tool. Enables agentic LLMs to pause, log thoughts, and improve multi-step tool use."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.6.0",
"python-dotenv>=1.1.0",
"tavily-python>=0.5.4",
]
authors = [
{ name = "Konstantin Krestnikov", email = "[email protected]" }
]
license = { text = "MIT" }
keywords = [
"mcp",
"think",
"agentic",
"llm",
"structured reasoning",
"anthropic",
"claude",
]
[project.urls]
Homepage = "https://github.com/Rai220/think-mcp"
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
think_mcp = "think_mcp.__main__:main"
think-mcp = "think_mcp.__main__:main"