ibm-watsonx-orchestrate-mcp-server 1.13.0b0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: ibm-watsonx-orchestrate-mcp-server
|
3
|
+
Version: 1.13.0b0
|
4
|
+
Summary: IBM watsonx Orchestrate ADK MCP Server
|
5
|
+
Author-email: IBM <support@ibm.com>
|
6
|
+
License: MIT License
|
7
|
+
Requires-Python: <3.14,>=3.11
|
8
|
+
Requires-Dist: authlib>=1.6.3
|
9
|
+
Requires-Dist: fastmcp~=2.10
|
10
|
+
Requires-Dist: ibm-watsonx-orchestrate
|
11
|
+
Requires-Dist: pyyaml<7.0.0,>=6.0.2
|
12
|
+
Requires-Dist: typing-extensions>=4.4.0
|
@@ -0,0 +1,39 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["hatchling"]
|
3
|
+
build-backend = "hatchling.build"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "ibm-watsonx-orchestrate-mcp-server"
|
7
|
+
dynamic = ["version"]
|
8
|
+
description = "IBM watsonx Orchestrate ADK MCP Server"
|
9
|
+
authors = [
|
10
|
+
{ name = "IBM", email = "support@ibm.com" }
|
11
|
+
]
|
12
|
+
#readme = { file = "README.md", content-type = 'text/markdown'}
|
13
|
+
license = {text = "MIT License"}
|
14
|
+
license-files = ["LICENSE"]
|
15
|
+
requires-python = ">=3.11, <3.14"
|
16
|
+
dependencies = [
|
17
|
+
"typing-extensions>=4.4.0",
|
18
|
+
"pyyaml>=6.0.2,<7.0.0",
|
19
|
+
"fastmcp~=2.10",
|
20
|
+
"ibm-watsonx-orchestrate",
|
21
|
+
"authlib>=1.6.3",
|
22
|
+
]
|
23
|
+
|
24
|
+
[tool.hatch.build.targets.wheel]
|
25
|
+
packages = ["."]
|
26
|
+
package-data = true
|
27
|
+
|
28
|
+
[tool.hatch.build]
|
29
|
+
include = [
|
30
|
+
"./*"
|
31
|
+
]
|
32
|
+
directory="../../dist"
|
33
|
+
|
34
|
+
[tool.hatch.version]
|
35
|
+
path = "../../src/ibm_watsonx_orchestrate/__init__.py"
|
36
|
+
validate-bump=false
|
37
|
+
|
38
|
+
[project.scripts]
|
39
|
+
ibm-watsonx-orchestrate-mcp-server = "ibm_watsonx_orchestrate_mcp_server.server:start_server"
|