49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Waiting to run
26 lines
713 B
TOML
26 lines
713 B
TOML
[project]
|
|
name = "mcp-snippets"
|
|
version = "0.1.0"
|
|
description = "MCP Example Snippets"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["servers", "clients"]
|
|
|
|
[project.scripts]
|
|
server = "servers:run_server"
|
|
client = "clients.stdio_client:main"
|
|
completion-client = "clients.completion_client:main"
|
|
direct-execution-server = "servers.direct_execution:main"
|
|
display-utilities-client = "clients.display_utilities:main"
|
|
oauth-client = "clients.oauth_client:run"
|
|
identity-assertion-client = "clients.identity_assertion_client:run"
|
|
elicitation-client = "clients.url_elicitation_client:run"
|