We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[project]
name = "vector-importer"
version = "0.1.0"
description = "Vector importer script"
authors = [{ name = "Convex, Inc.", email = "no-reply@convex.dev" }]
requires-python = "~=3.13.0"
dependencies = [
"python-dotenv>=1.0.0,<2",
"convex",
]
[project.scripts]
main = "main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{ include = "main.py" }]
[tool.uv]
[tool.uv.sources]
convex = { path = "../../../crates/py_client", editable = true }