rootly-mcp-server 0.0.2__tar.gz → 0.0.3__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.
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/PKG-INFO +6 -4
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/README.md +5 -3
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/pyproject.toml +7 -1
- rootly_mcp_server-0.0.3/src/rootly_mcp_server/data/__init__.py +4 -0
- rootly_mcp_server-0.0.3/src/rootly_mcp_server/data/swagger.json +1 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/src/rootly_mcp_server/server.py +16 -2
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/.gitignore +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/LICENSE +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/src/rootly_mcp_server/__init__.py +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/src/rootly_mcp_server/__main__.py +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/src/rootly_mcp_server/client.py +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/src/rootly_mcp_server/test_client.py +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/swagger.json +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/test_mcp_client.py +0 -0
- {rootly_mcp_server-0.0.2 → rootly_mcp_server-0.0.3}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rootly-mcp-server
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: A Model Context Protocol server for Rootly APIs using OpenAPI spec
|
|
5
5
|
Project-URL: Homepage, https://github.com/Rootly-AI-Labs/Rootly-MCP-server
|
|
6
6
|
Project-URL: Issues, https://github.com/Rootly-AI-Labs/Rootly-MCP-server/issues
|
|
@@ -29,6 +29,7 @@ A Model Context Protocol (MCP) server for Rootly API. This server dynamically ge
|
|
|
29
29
|
## Features
|
|
30
30
|
|
|
31
31
|
- Dynamically generated MCP tools based on Rootly's OpenAPI specification
|
|
32
|
+
- Swagger specification is bundled with the package
|
|
32
33
|
- Automatic fetching of the latest Swagger spec if not found locally
|
|
33
34
|
- Authentication via Rootly API token
|
|
34
35
|
- Default pagination (10 items) for incidents endpoints to prevent context window overflow
|
|
@@ -79,9 +80,10 @@ rootly-mcp-server
|
|
|
79
80
|
```
|
|
80
81
|
|
|
81
82
|
The server will automatically:
|
|
82
|
-
1.
|
|
83
|
-
2. If not found
|
|
84
|
-
3.
|
|
83
|
+
1. Use the bundled Swagger specification that comes with the package
|
|
84
|
+
2. If not found in the package, look for a local `swagger.json` file in the current and parent directories
|
|
85
|
+
3. If still not found, download the latest Swagger spec from Rootly's servers
|
|
86
|
+
4. Cache the downloaded spec to `swagger.json` in the current directory for future use
|
|
85
87
|
|
|
86
88
|
You can also specify a custom Swagger file path:
|
|
87
89
|
```bash
|
|
@@ -5,6 +5,7 @@ A Model Context Protocol (MCP) server for Rootly API. This server dynamically ge
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- Dynamically generated MCP tools based on Rootly's OpenAPI specification
|
|
8
|
+
- Swagger specification is bundled with the package
|
|
8
9
|
- Automatic fetching of the latest Swagger spec if not found locally
|
|
9
10
|
- Authentication via Rootly API token
|
|
10
11
|
- Default pagination (10 items) for incidents endpoints to prevent context window overflow
|
|
@@ -55,9 +56,10 @@ rootly-mcp-server
|
|
|
55
56
|
```
|
|
56
57
|
|
|
57
58
|
The server will automatically:
|
|
58
|
-
1.
|
|
59
|
-
2. If not found
|
|
60
|
-
3.
|
|
59
|
+
1. Use the bundled Swagger specification that comes with the package
|
|
60
|
+
2. If not found in the package, look for a local `swagger.json` file in the current and parent directories
|
|
61
|
+
3. If still not found, download the latest Swagger spec from Rootly's servers
|
|
62
|
+
4. Cache the downloaded spec to `swagger.json` in the current directory for future use
|
|
61
63
|
|
|
62
64
|
You can also specify a custom Swagger file path:
|
|
63
65
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "rootly-mcp-server"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.3"
|
|
4
4
|
description = "A Model Context Protocol server for Rootly APIs using OpenAPI spec"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -35,6 +35,12 @@ packages = ["src/rootly_mcp_server"]
|
|
|
35
35
|
[tool.hatch.metadata]
|
|
36
36
|
allow-direct-references = true
|
|
37
37
|
|
|
38
|
+
[tool.hatch.build.targets.wheel.sources]
|
|
39
|
+
"src" = ""
|
|
40
|
+
|
|
41
|
+
[tool.hatch.build.targets.wheel.include]
|
|
42
|
+
"src/rootly_mcp_server/data" = "rootly_mcp_server/data"
|
|
43
|
+
|
|
38
44
|
[project.scripts]
|
|
39
45
|
rootly-mcp-server = "rootly_mcp_server.__main__:main"
|
|
40
46
|
|