-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
63 lines (60 loc) · 1.72 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "openapi-mcp-sdk"
version = "0.3.1"
description = "Openapi.com official MCP server — ready-to-use gateway and Python SDK for AI agents"
readme = "docs/readme-pypi.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"mcp",
"model-context-protocol",
"openapi",
"ai",
"llm",
"agent",
"fastapi",
"sdk",
"gateway",
"claude",
"anthropic",
"tools",
"api",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
authors = [
{ name = "Francesco Bianco", email = "info.francescobianco@gmail.com" },
{ name = "Marco Prosperi", email = "m.prosperi@openapi.com" },
{ name = "Simone Desantis", email = "s.desantis@openapi.com" },
]
maintainers = [
{ name = "openapi.com", email = "support@openapi.com" },
]
dependencies = [
"expiringdict>=1.2.2",
"fastmcp>=2.9.1",
"mcp[cli]>=1.10.1",
"pydantic>=2.11.7",
"python-dotenv>=1.1.1",
"requests>=2.32.4",
"uvicorn>=0.35.0",
"fastapi>=0.110.0",
]
[project.urls]
Homepage = "https://openapi.com/"
Repository = "https://github.com/openapi/mcp-server"
"Bug Tracker" = "https://github.com/openapi/mcp-server/issues"
Changelog = "https://github.com/openapi/mcp-server/releases"
[tool.pytest.ini_options]
testpaths = ["tests/pytest"]
[project.scripts]
openapi-mcp-sdk = "openapi_mcp_sdk.cli:main"