mcp-instana 0.2.0__tar.gz → 0.2.1__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.
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/.github/workflows/ci.yml +2 -2
- mcp_instana-0.2.1/.github/workflows/mcpb.yml +43 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/PKG-INFO +2 -2
- mcp_instana-0.2.1/mcp-instana-fixed.mcpb +0 -0
- mcp_instana-0.2.1/mcpb/.mcpbignore +179 -0
- mcp_instana-0.2.1/mcpb/README.md +1206 -0
- mcp_instana-0.2.1/mcpb/manifest.json +62 -0
- mcp_instana-0.2.1/mcpb/mcpb.mcpb +0 -0
- mcp_instana-0.2.1/mcpb/pack.sh +22 -0
- mcp_instana-0.2.1/mcpb/src/core/server.py +668 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/pyproject-runtime.toml +1 -1
- mcp_instana-0.2.1/pyproject.toml +140 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/pyrightconfig.json +1 -1
- mcp_instana-0.2.1/src/__init__.py +0 -0
- mcp_instana-0.2.1/src/application/__init__.py +1 -0
- mcp_instana-0.2.1/src/application/application_alert_config.py +658 -0
- mcp_instana-0.2.1/src/application/application_analyze.py +628 -0
- mcp_instana-0.2.1/src/application/application_catalog.py +155 -0
- mcp_instana-0.2.1/src/application/application_global_alert_config.py +653 -0
- mcp_instana-0.2.1/src/application/application_metrics.py +359 -0
- mcp_instana-0.2.1/src/application/application_resources.py +371 -0
- mcp_instana-0.2.1/src/application/application_settings.py +1731 -0
- mcp_instana-0.2.1/src/application/application_topology.py +111 -0
- mcp_instana-0.2.1/src/automation/action_catalog.py +416 -0
- mcp_instana-0.2.1/src/automation/action_history.py +338 -0
- mcp_instana-0.2.1/src/core/__init__.py +1 -0
- mcp_instana-0.2.1/src/core/utils.py +213 -0
- mcp_instana-0.2.1/src/event/__init__.py +1 -0
- mcp_instana-0.2.1/src/event/events_tools.py +850 -0
- mcp_instana-0.2.1/src/infrastructure/__init__.py +1 -0
- mcp_instana-0.2.1/src/infrastructure/infrastructure_analyze.py +635 -0
- mcp_instana-0.2.1/src/infrastructure/infrastructure_catalog.py +556 -0
- mcp_instana-0.2.1/src/infrastructure/infrastructure_metrics.py +171 -0
- mcp_instana-0.2.1/src/infrastructure/infrastructure_resources.py +624 -0
- mcp_instana-0.2.1/src/infrastructure/infrastructure_topology.py +320 -0
- mcp_instana-0.2.1/src/log/__init__.py +1 -0
- mcp_instana-0.2.1/src/log/log_alert_configuration.py +331 -0
- mcp_instana-0.2.1/src/prompts/__init__.py +16 -0
- mcp_instana-0.2.1/src/prompts/application/__init__.py +1 -0
- mcp_instana-0.2.1/src/prompts/application/application_alerts.py +54 -0
- mcp_instana-0.2.1/src/prompts/application/application_catalog.py +26 -0
- mcp_instana-0.2.1/src/prompts/application/application_metrics.py +57 -0
- mcp_instana-0.2.1/src/prompts/application/application_resources.py +26 -0
- mcp_instana-0.2.1/src/prompts/application/application_settings.py +75 -0
- mcp_instana-0.2.1/src/prompts/application/application_topology.py +30 -0
- mcp_instana-0.2.1/src/prompts/events/__init__.py +1 -0
- mcp_instana-0.2.1/src/prompts/events/events_tools.py +161 -0
- mcp_instana-0.2.1/src/prompts/infrastructure/infrastructure_analyze.py +72 -0
- mcp_instana-0.2.1/src/prompts/infrastructure/infrastructure_catalog.py +53 -0
- mcp_instana-0.2.1/src/prompts/infrastructure/infrastructure_metrics.py +45 -0
- mcp_instana-0.2.1/src/prompts/infrastructure/infrastructure_resources.py +74 -0
- mcp_instana-0.2.1/src/prompts/infrastructure/infrastructure_topology.py +38 -0
- mcp_instana-0.2.1/src/prompts/settings/__init__.py +0 -0
- mcp_instana-0.2.1/src/prompts/settings/custom_dashboard.py +157 -0
- mcp_instana-0.2.1/src/prompts/website/__init__.py +1 -0
- mcp_instana-0.2.1/src/prompts/website/website_analyze.py +35 -0
- mcp_instana-0.2.1/src/prompts/website/website_catalog.py +40 -0
- mcp_instana-0.2.1/src/prompts/website/website_configuration.py +105 -0
- mcp_instana-0.2.1/src/prompts/website/website_metrics.py +34 -0
- mcp_instana-0.2.1/src/settings/__init__.py +1 -0
- mcp_instana-0.2.1/src/settings/custom_dashboard_tools.py +417 -0
- mcp_instana-0.2.1/src/website/__init__.py +0 -0
- mcp_instana-0.2.1/src/website/website_analyze.py +433 -0
- mcp_instana-0.2.1/src/website/website_catalog.py +171 -0
- mcp_instana-0.2.1/src/website/website_configuration.py +770 -0
- mcp_instana-0.2.1/src/website/website_metrics.py +241 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/uv.lock +575 -476
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/.bob/mcp.json +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/.github/dco.yml +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/.gitignore +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/CONTRIBUTING.md +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/Dockerfile +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/LICENSE.md +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/README.md +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/architecture.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/call_tools.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/claudeResponse.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/claudeTools.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/copilot.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/copilotResponse.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/kubernetesEvents.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/mcpInstanaFlow.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/images/query_events.png +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/pyproject.toml +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_alert_config.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_global_alert_config.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_settings.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/application/application_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/automation/action_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/automation/action_history.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/core/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/core/utils.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/event/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/event/events_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/infrastructure_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/infrastructure_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/infrastructure_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/infrastructure_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/infrastructure/infrastructure_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/log/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/log/log_alert_configuration.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_alerts.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_settings.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/application/application_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/events/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/events/events_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/infrastructure/infrastructure_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/infrastructure/infrastructure_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/infrastructure/infrastructure_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/infrastructure/infrastructure_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/infrastructure/infrastructure_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/settings/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/settings/custom_dashboard.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/website/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/website/website_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/website/website_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/website/website_configuration.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/prompts/website/website_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/settings/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/settings/custom_dashboard_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/website/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/website/website_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/website/website_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/website/website_configuration.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1/mcpb}/src/website/website_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/run_ruff_check.sh +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/src/core/server.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/README.md +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_alert_config.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_global_alert_config.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_settings.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/application/test_application_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/automation/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/automation/test_action_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/core/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/core/test_server.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/core/test_utils.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/README.md +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_alert_config.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_settings.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/application/test_application_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/conftest.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/event/test_events_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/infrastructure/test_infrastructure_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/infrastructure/test_infrastructure_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/infrastructure/test_infrastructure_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/infrastructure/test_infrastructure_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/infrastructure/test_infrastructure_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/pytest.ini +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/run_e2e_tests.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/server/test_server_integration.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/e2e/utils/test_base_instana_client.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/event/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/event/test_events_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/test_infrastructure_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/test_infrastructure_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/test_infrastructure_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/test_infrastructure_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/infrastructure/test_infrastructure_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/log/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/log/test_log_alert_configuration.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_alerts.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_settings.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/application/test_application_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/events/test_events_tools.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/__init__.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/test_infrastructure_analyze.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/test_infrastructure_catalog.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/test_infrastructure_metrics.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/test_infrastructure_resources.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/prompts/infrastructure/test_infrastructure_topology.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/run_all_tests.py +0 -0
- {mcp_instana-0.2.0 → mcp_instana-0.2.1}/tests/run_all_tests_with_coverage.py +0 -0
|
@@ -4,14 +4,14 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches: [ main ]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [ main,
|
|
7
|
+
branches: [ main, p310 ]
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
lint-and-test:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
strategy:
|
|
13
13
|
matrix:
|
|
14
|
-
python-version: ['3.
|
|
14
|
+
python-version: ['3.10']
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v4
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: Build and Upload MCPB
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
release:
|
|
6
|
+
types: [published]
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout code
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Setup Python
|
|
20
|
+
uses: actions/setup-python@v4
|
|
21
|
+
with:
|
|
22
|
+
python-version: '3.11'
|
|
23
|
+
|
|
24
|
+
- name: Build MCPB
|
|
25
|
+
run: |
|
|
26
|
+
cd mcpb
|
|
27
|
+
bash pack.sh
|
|
28
|
+
|
|
29
|
+
- name: Upload artifact (PR only)
|
|
30
|
+
if: github.event_name == 'pull_request'
|
|
31
|
+
uses: actions/upload-artifact@v4
|
|
32
|
+
with:
|
|
33
|
+
name: mcp-instana.mcpb
|
|
34
|
+
path: mcpb/mcp-instana.mcpb
|
|
35
|
+
|
|
36
|
+
- name: Upload to release (on release)
|
|
37
|
+
if: github.event_name == 'release'
|
|
38
|
+
run: |
|
|
39
|
+
gh release upload "${{ github.event.release.tag_name }}" \
|
|
40
|
+
mcpb/mcp-instana.mcpb \
|
|
41
|
+
--clobber
|
|
42
|
+
env:
|
|
43
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-instana
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: MCP server for Instana
|
|
5
5
|
Author-email: Elina Priyadarshinee <Elina.priyadarshinee1@ibm.com>, Guangya Liu <gyliu@ibm.com>, Isabell Sippli <ischwert@de.ibm.com>, Jay Sharma <Jay.Sharma3@ibm.com>, Madhu Tadiparthi <madhu.tadiparthi@ibm.com>, Riya Kumari <Riya.Kumari3@ibm.com>
|
|
6
6
|
License: Apache-2.0
|
|
7
7
|
License-File: LICENSE.md
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Requires-Dist: fastmcp==2.10.3
|
|
10
10
|
Requires-Dist: instana-client==1.0.0
|
|
11
11
|
Requires-Dist: pydantic==2.11.7
|
|
Binary file
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py,cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
cover/
|
|
51
|
+
|
|
52
|
+
# Translations
|
|
53
|
+
*.mo
|
|
54
|
+
*.pot
|
|
55
|
+
|
|
56
|
+
# Django stuff:
|
|
57
|
+
*.log
|
|
58
|
+
local_settings.py
|
|
59
|
+
db.sqlite3
|
|
60
|
+
db.sqlite3-journal
|
|
61
|
+
|
|
62
|
+
# Flask stuff:
|
|
63
|
+
instance/
|
|
64
|
+
.webassets-cache
|
|
65
|
+
|
|
66
|
+
# Scrapy stuff:
|
|
67
|
+
.scrapy
|
|
68
|
+
|
|
69
|
+
# Sphinx documentation
|
|
70
|
+
docs/_build/
|
|
71
|
+
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
|
|
79
|
+
# IPython
|
|
80
|
+
profile_default/
|
|
81
|
+
ipython_config.py
|
|
82
|
+
|
|
83
|
+
# UV
|
|
84
|
+
uv.lock
|
|
85
|
+
|
|
86
|
+
# poetry
|
|
87
|
+
poetry.lock
|
|
88
|
+
|
|
89
|
+
# pdm
|
|
90
|
+
pdm.lock
|
|
91
|
+
.pdm.toml
|
|
92
|
+
.pdm-python
|
|
93
|
+
.pdm-build/
|
|
94
|
+
|
|
95
|
+
# PEP 582
|
|
96
|
+
__pypackages__/
|
|
97
|
+
|
|
98
|
+
# Celery stuff
|
|
99
|
+
celerybeat-schedule
|
|
100
|
+
celerybeat.pid
|
|
101
|
+
|
|
102
|
+
# SageMath parsed files
|
|
103
|
+
*.sage.py
|
|
104
|
+
|
|
105
|
+
# Environments
|
|
106
|
+
.env
|
|
107
|
+
.venv
|
|
108
|
+
env/
|
|
109
|
+
venv/
|
|
110
|
+
ENV/
|
|
111
|
+
env.bak/
|
|
112
|
+
venv.bak/
|
|
113
|
+
|
|
114
|
+
# Spyder project settings
|
|
115
|
+
.spyderproject
|
|
116
|
+
.spyproject
|
|
117
|
+
|
|
118
|
+
# Rope project settings
|
|
119
|
+
.ropeproject
|
|
120
|
+
|
|
121
|
+
# mkdocs documentation
|
|
122
|
+
/site
|
|
123
|
+
|
|
124
|
+
# mypy
|
|
125
|
+
.mypy_cache/
|
|
126
|
+
.dmypy.json
|
|
127
|
+
dmypy.json
|
|
128
|
+
|
|
129
|
+
# Pyre type checker
|
|
130
|
+
.pyre/
|
|
131
|
+
|
|
132
|
+
# pytype static type analyzer
|
|
133
|
+
.pytype/
|
|
134
|
+
|
|
135
|
+
# Cython debug symbols
|
|
136
|
+
cython_debug/
|
|
137
|
+
|
|
138
|
+
# PyCharm
|
|
139
|
+
.idea/
|
|
140
|
+
|
|
141
|
+
# Ruff stuff:
|
|
142
|
+
.ruff_cache/
|
|
143
|
+
|
|
144
|
+
# PyPI configuration file
|
|
145
|
+
.pypirc
|
|
146
|
+
.DS_Store
|
|
147
|
+
|
|
148
|
+
# Ignore tooling dirs
|
|
149
|
+
.Bob/
|
|
150
|
+
.vscode/
|
|
151
|
+
node_modules/
|
|
152
|
+
|
|
153
|
+
# MCPB files
|
|
154
|
+
*.mcpb
|
|
155
|
+
mcpb/
|
|
156
|
+
|
|
157
|
+
# Test files and directories
|
|
158
|
+
tests/
|
|
159
|
+
test_*.py
|
|
160
|
+
*_test.py
|
|
161
|
+
|
|
162
|
+
# Documentation and images
|
|
163
|
+
images/
|
|
164
|
+
*.png
|
|
165
|
+
*.jpg
|
|
166
|
+
*.jpeg
|
|
167
|
+
*.gif
|
|
168
|
+
*.svg
|
|
169
|
+
|
|
170
|
+
# Build artifacts
|
|
171
|
+
Dockerfile
|
|
172
|
+
.github/
|
|
173
|
+
*.yml
|
|
174
|
+
*.yaml
|
|
175
|
+
|
|
176
|
+
# Runtime files
|
|
177
|
+
pyproject-runtime.toml
|
|
178
|
+
pyrightconfig.json
|
|
179
|
+
run_ruff_check.sh
|