First commit

This commit is contained in:
Johan
2025-12-17 13:33:10 +01:00
commit 8bf5110459
7 changed files with 3759 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[project]
name = "fast-mcp"
version = "0.1.0"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.13",
]
keywords = ["mcp", "ia", "llm"]
requires-python = ">=3.13"
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
langchain = "^0.3.27"
langchain-openai = "^0.3.35"
mcp-use = "^1.3.10"
fastapi = "^0.116.1"
uvicorn = { version = "^0.35.0", extras = [ "standard" ] }
gunicorn = "^23.0.0"
pydantic = {extras = ["email"], version = "^2.11.7"}
strawberry-graphql = "^0.281.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"