-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
36 lines (32 loc) · 858 Bytes
/
pyproject.toml
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
35
36
[project]
name = "mcp-pinecone"
version = "0.1.8"
description = "Read and write to Pinecone from Claude Desktop with Model Context Protocol."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.0",
"jsonschema>=4.23.0",
"mcp>=1.0.0",
"pinecone>=5.4.1",
"python-dotenv>=1.0.1",
"tiktoken>=0.8.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
]
[[project.authors]]
name = "Navishkar Rao"
email = "[email protected]"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
mcp-pinecone = "mcp_pinecone:main"
[tool.mcp-pinecone]
server_name = "mcp-pinecone"
[project.urls]
Homepage = "https://sirmews.github.io/mcp-pinecone/"
Issues = "https://github.com/sirmews/mcp-pinecone/issues"