mcp-instana 0.6.2__py3-none-any.whl → 0.7.0__py3-none-any.whl
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.6.2.dist-info → mcp_instana-0.7.0.dist-info}/METADATA +179 -120
- {mcp_instana-0.6.2.dist-info → mcp_instana-0.7.0.dist-info}/RECORD +28 -21
- src/application/application_alert_config.py +397 -146
- src/application/application_analyze.py +597 -597
- src/application/application_call_group.py +528 -0
- src/application/application_catalog.py +0 -8
- src/application/application_global_alert_config.py +255 -38
- src/application/application_metrics.py +377 -237
- src/application/application_resources.py +414 -365
- src/application/application_settings.py +605 -1651
- src/application/application_topology.py +62 -62
- src/core/custom_dashboard_smart_router_tool.py +135 -0
- src/core/server.py +92 -119
- src/core/smart_router_tool.py +574 -0
- src/core/utils.py +17 -8
- src/custom_dashboard/custom_dashboard_tools.py +422 -0
- src/infrastructure/elicitation_handler.py +338 -0
- src/infrastructure/entity_registry.py +329 -0
- src/infrastructure/infrastructure_analyze_new.py +600 -0
- src/infrastructure/{infrastructure_analyze.py → infrastructure_analyze_old.py} +1 -16
- src/infrastructure/infrastructure_catalog.py +7 -28
- src/infrastructure/infrastructure_metrics.py +93 -17
- src/infrastructure/infrastructure_resources.py +5 -20
- src/infrastructure/infrastructure_topology.py +2 -8
- src/prompts/application/application_settings.py +58 -0
- {mcp_instana-0.6.2.dist-info → mcp_instana-0.7.0.dist-info}/WHEEL +0 -0
- {mcp_instana-0.6.2.dist-info → mcp_instana-0.7.0.dist-info}/entry_points.txt +0 -0
- {mcp_instana-0.6.2.dist-info → mcp_instana-0.7.0.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-instana
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
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
8
|
Requires-Python: >=3.10
|
|
9
9
|
Requires-Dist: fastmcp==2.13.0
|
|
10
|
-
Requires-Dist: instana-client==1.0.
|
|
10
|
+
Requires-Dist: instana-client==1.0.3
|
|
11
|
+
Requires-Dist: lazy-imports
|
|
11
12
|
Requires-Dist: mcp
|
|
12
13
|
Requires-Dist: pydantic==2.11.7
|
|
13
14
|
Requires-Dist: python-dotenv==1.1.0
|
|
@@ -55,6 +56,7 @@ Description-Content-Type: text/markdown
|
|
|
55
56
|
- [Claude Desktop](#claude-desktop)
|
|
56
57
|
- [Streamable HTTP Mode](#streamable-http-mode)
|
|
57
58
|
- [Stdio Mode](#stdio-mode)
|
|
59
|
+
- [Kiro Setup](#kiro-setup)
|
|
58
60
|
- [GitHub Copilot](#github-copilot)
|
|
59
61
|
- [Streamable HTTP Mode](#streamable-http-mode-1)
|
|
60
62
|
- [Stdio Mode](#stdio-mode-1)
|
|
@@ -242,7 +244,7 @@ uv run src/core/server.py [OPTIONS]
|
|
|
242
244
|
- `--transport <mode>`: Transport mode (choices: `streamable-http`, `stdio`)
|
|
243
245
|
- `--debug`: Enable debug mode with additional logging
|
|
244
246
|
- `--log-level <level>`: Set the logging level (choices: `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`)
|
|
245
|
-
- `--tools <categories>`: Comma-separated list of tool categories to enable (e.g., infra,app,events,
|
|
247
|
+
- `--tools <categories>`: Comma-separated list of tool categories to enable (e.g., infra,app,events,website). Enabling a category will also enable its related prompts. For example: `--tools infra` enables the infra tools and all infra-related prompts.
|
|
246
248
|
- `--list-tools`: List all available tool categories and exit
|
|
247
249
|
- `--port <port>`: Port to listen on (default: 8080)
|
|
248
250
|
- `--help`: Show help message and exit
|
|
@@ -363,7 +365,6 @@ uv run src/core/server.py --transport streamable-http --tools events
|
|
|
363
365
|
- **`infra`**: Infrastructure monitoring tools and prompts (resources, catalog, topology, analyze, metrics)
|
|
364
366
|
- **`app`**: Application performance tools and prompts (resources, metrics, alerts, catalog, topology, analyze, settings, global alerts)
|
|
365
367
|
- **`events`**: Event monitoring tools and prompts (Kubernetes events, agent monitoring)
|
|
366
|
-
- **`automation`**: Automation-related tools and prompts (action catalog, action history)
|
|
367
368
|
- **`website`**: Website monitoring tools and prompts (metrics, catalog, analyze, configuration)
|
|
368
369
|
|
|
369
370
|
### Verifying Server Status
|
|
@@ -501,6 +502,44 @@ get me all endpoints from Instana
|
|
|
501
502
|
}
|
|
502
503
|
}
|
|
503
504
|
```
|
|
505
|
+
### Kiro Setup
|
|
506
|
+
|
|
507
|
+
Kiro is an agentic IDE, not an extension that can be downloaded into VS Code or some other IDE.
|
|
508
|
+
|
|
509
|
+
**Step 1: Download and install Kiro for your operating system from https://kiro.dev/.**
|
|
510
|
+
|
|
511
|
+
**Step 2: After installation, launch Kiro and open any project in the IDE.**
|
|
512
|
+

|
|
513
|
+
|
|
514
|
+
**Step 3: Click the Kiro (Ghost) icon on the left sidebar to access Kiro's features.**
|
|
515
|
+

|
|
516
|
+
|
|
517
|
+
**Step 4: Select the Edit Config icon in the top right corner of the MCP Servers section.**
|
|
518
|
+

|
|
519
|
+
|
|
520
|
+
**Step 5: Open the MCP server configuration file (mcp.json), similar to how it works in Claude, and update it with your server's name, commands, and headers as shown in the image below.**
|
|
521
|
+
|
|
522
|
+
```json
|
|
523
|
+
{
|
|
524
|
+
"mcpServers": {
|
|
525
|
+
"Instana MCP Server": {
|
|
526
|
+
"command": "npx",
|
|
527
|
+
"args": [
|
|
528
|
+
"mcp-remote", "<YOUR_MCP_PORT>/mcp",
|
|
529
|
+
"--allow-http",
|
|
530
|
+
"--header", "instana-base-url: <INSTANA_BASE_URL>",
|
|
531
|
+
"--header", "instana-api-token: <INSTANA_API_TOKEN>"
|
|
532
|
+
]
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
**Step 6: After saving the file, Click the Enable MCP button and you'll see your MCP server and its available tools appear in the bottom-left section of Kiro.**
|
|
539
|
+

|
|
540
|
+
|
|
541
|
+
**Step 7: Go to the AI Chat panel, enter a prompt related to your MCP server, and view the response directly within Kiro.**
|
|
542
|
+

|
|
504
543
|
|
|
505
544
|
### GitHub Copilot
|
|
506
545
|
|
|
@@ -616,54 +655,35 @@ Here is an example of a GitHub Copilot response:
|
|
|
616
655
|
|
|
617
656
|
## Supported Features
|
|
618
657
|
|
|
619
|
-
- [
|
|
620
|
-
- [
|
|
621
|
-
- [
|
|
622
|
-
- [
|
|
623
|
-
- [
|
|
624
|
-
- [ ] Data Metrics
|
|
625
|
-
- [x] Application Resources
|
|
626
|
-
- [x] Get Applications Endpoints
|
|
627
|
-
- [x] Get Applications
|
|
628
|
-
- [x] Get Services
|
|
629
|
-
- [x] Get Application Services
|
|
658
|
+
- [x] **Unified Application & Infrastructure Management** (`manage_instana_resources`)
|
|
659
|
+
- [x] Application Metrics
|
|
660
|
+
- [x] Query application metrics with flexible filtering
|
|
661
|
+
- [x] List services and endpoints
|
|
662
|
+
- [x] Group by tags and aggregate metrics
|
|
630
663
|
- [x] Application Alert Configuration
|
|
631
|
-
- [x]
|
|
632
|
-
- [x] Get
|
|
633
|
-
- [x]
|
|
634
|
-
- [
|
|
635
|
-
- [
|
|
636
|
-
|
|
637
|
-
- [
|
|
638
|
-
- [x]
|
|
639
|
-
|
|
640
|
-
- [x]
|
|
641
|
-
- [
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
- [
|
|
645
|
-
- [
|
|
646
|
-
|
|
647
|
-
- [x]
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
- [x] Get Tag Catalog
|
|
655
|
-
- [x] Get Tag Catalog ALL
|
|
656
|
-
- [ ] Infrastructure Resources
|
|
657
|
-
- [x] Get Monitoring State
|
|
658
|
-
- [ ] Get plugin Payload
|
|
659
|
-
- [x] Search Snapshots
|
|
660
|
-
- [x] Get Snapshot Details for single Snapshot ID
|
|
661
|
-
- [x] Get Details for Multiple Snapshot IDs
|
|
662
|
-
- [x] Software Versions
|
|
663
|
-
- [x] Infrastructure Topology
|
|
664
|
-
- [x] Get Hosts for Snapshot
|
|
665
|
-
- [x] Get Topology
|
|
666
|
-
- [x] Events
|
|
664
|
+
- [x] Find active alert configurations
|
|
665
|
+
- [x] Get alert configuration versions
|
|
666
|
+
- [x] Create, update, and delete alert configurations
|
|
667
|
+
- [x] Enable, disable, and restore alert configurations
|
|
668
|
+
- [x] Update historic baselines
|
|
669
|
+
- [x] Global Application Alert Configuration
|
|
670
|
+
- [x] Manage global alert configurations
|
|
671
|
+
- [x] Version control for global alerts
|
|
672
|
+
- [x] Application Settings
|
|
673
|
+
- [x] Manage application perspectives
|
|
674
|
+
- [x] Configure endpoints and services
|
|
675
|
+
- [x] Manage manual services
|
|
676
|
+
- [x] Application Catalog
|
|
677
|
+
- [x] Get application tag catalog
|
|
678
|
+
- [x] Get application metric catalog
|
|
679
|
+
- [x] **Infrastructure Analysis** (`analyze_infrastructure_elicitation`)
|
|
680
|
+
- [x] Two-pass elicitation for entity/metric queries
|
|
681
|
+
- [x] Support for multiple entity types (JVM, Kubernetes, Docker, etc.)
|
|
682
|
+
- [x] Flexible metric aggregation (max, mean, sum, etc.)
|
|
683
|
+
- [x] Advanced filtering by tags and properties
|
|
684
|
+
- [x] Grouping and ordering capabilities
|
|
685
|
+
- [x] Time range queries
|
|
686
|
+
- [x] **Events**
|
|
667
687
|
- [x] Events
|
|
668
688
|
- [x] Get Event
|
|
669
689
|
- [x] Get Events by IDs
|
|
@@ -672,48 +692,56 @@ Here is an example of a GitHub Copilot response:
|
|
|
672
692
|
- [x] Get Issues
|
|
673
693
|
- [x] Get Incidents
|
|
674
694
|
- [x] Get Changes
|
|
695
|
+
- [x] Website
|
|
696
|
+
- [x] Website Metrics
|
|
697
|
+
- [ ] Get Website Page Load
|
|
698
|
+
- [x] Get Website Beacon Metrics V2
|
|
699
|
+
- [x] Website Catalog
|
|
700
|
+
- [x] Get Website Catalog Metrics
|
|
701
|
+
- [x] Get Website Catalog Tags
|
|
702
|
+
- [ ] Get Website Tag Catalog
|
|
703
|
+
- [x] Website Analyze
|
|
704
|
+
- [x] Get Website Beacon Groups
|
|
705
|
+
- [x] Get Website Beacons
|
|
706
|
+
- [x] Website Configuration
|
|
707
|
+
- [x] Get Websites
|
|
708
|
+
- [x] Get Website
|
|
709
|
+
- [x] Create Website
|
|
710
|
+
- [x] Delete Website
|
|
711
|
+
- [x] Rename Website
|
|
712
|
+
- [x] Get Website Geo Location
|
|
713
|
+
- [x] Update Website Geo Location
|
|
714
|
+
- [x] Get Website IP Masking
|
|
715
|
+
- [x] Update Website IP Masking
|
|
716
|
+
- [x] Get Website Geo Mapping Rules
|
|
717
|
+
- [ ] Set Website Geo Mapping Rules
|
|
718
|
+
- [ ] Upload Source Map File
|
|
719
|
+
- [ ] Clear Source Map Upload
|
|
720
|
+
- [x] **Custom Dashboards** (`manage_custom_dashboards`)
|
|
721
|
+
- [x] Get all custom dashboards
|
|
722
|
+
- [x] Get specific dashboard by ID
|
|
723
|
+
- [x] Create new custom dashboard
|
|
724
|
+
- [x] Update existing custom dashboard
|
|
725
|
+
- [x] Delete custom dashboard
|
|
726
|
+
- [x] Get shareable users for dashboard
|
|
727
|
+
- [x] Get shareable API tokens for dashboard
|
|
675
728
|
|
|
676
729
|
## Available Tools
|
|
677
730
|
|
|
678
731
|
| Tool | Category | Description |
|
|
679
732
|
|---------------------------------------------------------------|--------------------------------|------------------------------------------------------- |
|
|
680
|
-
| `
|
|
681
|
-
| `
|
|
682
|
-
| `
|
|
683
|
-
| `
|
|
684
|
-
| `
|
|
685
|
-
| `
|
|
686
|
-
| `
|
|
687
|
-
| `
|
|
688
|
-
| `
|
|
689
|
-
| `
|
|
690
|
-
| `
|
|
691
|
-
| `
|
|
692
|
-
| `get_snapshot` | Infrastructure Resources | Get snapshot details |
|
|
693
|
-
| `software_versions` | Infrastructure Resources | Get installed software |
|
|
694
|
-
| `get_available_payload_keys_by_plugin_id` | Infrastructure Catalog | Get Payload Keys By plugin ID |
|
|
695
|
-
| `get_infrastructure_catalog_metrics` | Infrastructure Catalog | Get Infrastructure Catalog Metrics |
|
|
696
|
-
| `get_infrastructure_catalog_plugins` | Infrastructure Catalog | Get Infrastructure Catalog Plugins |
|
|
697
|
-
| `get_infrastructure_catalog_plugins_with_custom_metrics` | Infrastructure Catalog | Get Infrastructure Catalog Plugins with Custom Metrics |
|
|
698
|
-
| `get_infrastructure_catalog_search_fields` | Infrastructure Catalog | Get Infrastructure Catalog Search Fields |
|
|
699
|
-
| `get_tag_catalog` | Infrastructure Catalog | Get Tag Catalog |
|
|
700
|
-
| `get_tag_catalog_all` | Infrastructure Catalog | Get Tag Catalog ALL |
|
|
701
|
-
| `get_related_hosts` | Infrastructure Topology | Get Related Hosts |
|
|
702
|
-
| `get_topology` | Infrastructure Topology | Get Topology |
|
|
703
|
-
| `get_available_metrics` | Infrastructure Analyze | Get Available Metrics |
|
|
704
|
-
| `get_entities` | Infrastructure Analyze | Get infrastructure entities |
|
|
705
|
-
| `get_aggregated_entity_groups` | Infrastructure Analyze | Get grouped entities with aggregated metrics |
|
|
706
|
-
| `get_available_plugins` | Infrastructure Analyze | Get available entity types |
|
|
707
|
-
| `get_application_alert_configs` | Application Alert Configuration| Get All Smart Alert Configurations |
|
|
708
|
-
| `find_application_alert_config` | Application Alert Configuration| Get Smart Alert Configuration |
|
|
709
|
-
| `find_application_alert_config_versions` | Application Alert Configuration| Get Smart Alert Config Versions |
|
|
710
|
-
| `create_application_alert_config` | Application Alert Configuration| Create Smart Alert Configuration |
|
|
711
|
-
| `update_application_alert_config` | Application Alert Configuration| Update Smart Alert Configuration |
|
|
712
|
-
| `delete_application_alert_config` | Application Alert Configuration| Delete Smart Alert Configuration |
|
|
713
|
-
| `update_application_historic_baseline` | Application Alert Configuration| Recalculate Smart Alert Config Baseline |
|
|
714
|
-
| `enable_application_alert_config` | Application Alert Configuration| Enable Application Alert Config |
|
|
715
|
-
| `disable_application_alert_config` | Application Alert Configuration| Disable Smart Alert Config |
|
|
716
|
-
| `restore_application_alert_config` | Application Alert Configuration| Restore Smart Alert Config |
|
|
733
|
+
| `manage_instana_resources` | Application & Infrastructure | Unified tool for managing application metrics, alert configs, settings, and catalog |
|
|
734
|
+
| `manage_custom_dashboards` | Custom Dashboards | Unified tool for managing custom dashboard CRUD operations |
|
|
735
|
+
| `analyze_infrastructure_elicitation` | Infrastructure Analyze | Two-pass infrastructure analysis with entity/metric elicitation |
|
|
736
|
+
| `get_actions` | Automation | Get available automation actions from action catalog |
|
|
737
|
+
| `get_action_details` | Automation | Get detailed information about a specific action |
|
|
738
|
+
| `get_action_types` | Automation | Get available action types |
|
|
739
|
+
| `get_action_tags` | Automation | Get available action tags |
|
|
740
|
+
| `get_action_matches` | Automation | Get action matches for a given search space |
|
|
741
|
+
| `submit_automation_action` | Automation | Submit an automation action for execution |
|
|
742
|
+
| `get_action_instance_details` | Automation | Get details of an automation action run result |
|
|
743
|
+
| `list_action_instances` | Automation | List automation action run results |
|
|
744
|
+
| `delete_action_instance` | Automation | Delete an automation action run result |
|
|
717
745
|
| `get_event` | Events | Get Specific Event by ID |
|
|
718
746
|
| `get_kubernetes_info_events` | Events | Get Kubernetes Info Events |
|
|
719
747
|
| `get_agent_monitoring_events` | Events | Get Agent Monitoring Events |
|
|
@@ -721,6 +749,26 @@ Here is an example of a GitHub Copilot response:
|
|
|
721
749
|
| `get_incidents` | Events | Get Incidents |
|
|
722
750
|
| `get_changes` | Events | Get Changes |
|
|
723
751
|
| `get_events_by_ids` | Events | Get Events by IDs |
|
|
752
|
+
| `get_website_page_load` | Website Metrics | Get website monitoring beacons for a specific page load|
|
|
753
|
+
| `get_website_beacon_metrics_v2` | Website Metrics | Get website beacon metrics using the v2 API |
|
|
754
|
+
| `get_website_catalog_metrics` | Website Catalog | Get website monitoring metrics catalog |
|
|
755
|
+
| `get_website_catalog_tags` | Website Catalog | Get website monitoring tags catalog |
|
|
756
|
+
| `get_website_tag_catalog` | Website Catalog | Get website monitoring tag catalog |
|
|
757
|
+
| `get_website_beacon_groups` | Website Analyze | Get grouped website beacon metrics |
|
|
758
|
+
| `get_website_beacons` | Website Analyze | Get all website beacon metrics |
|
|
759
|
+
| `get_websites` | Website Configuration | Get all websites |
|
|
760
|
+
| `get_website` | Website Configuration | Get a specific website by ID |
|
|
761
|
+
| `create_website` | Website Configuration | Create a new website configuration |
|
|
762
|
+
| `delete_website` | Website Configuration | Delete a website configuration |
|
|
763
|
+
| `rename_website` | Website Configuration | Rename a website configuration |
|
|
764
|
+
| `get_website_geo_location_configuration` | Website Configuration | Get geo-location configuration for a website |
|
|
765
|
+
| `update_website_geo_location_configuration` | Website Configuration | Update geo-location configuration for a website |
|
|
766
|
+
| `get_website_ip_masking_configuration` | Website Configuration | Get IP masking configuration for a website |
|
|
767
|
+
| `update_website_ip_masking_configuration` | Website Configuration | Update IP masking configuration for a website |
|
|
768
|
+
| `get_website_geo_mapping_rules` | Website Configuration | Get custom geo mapping rules for website |
|
|
769
|
+
| `set_website_geo_mapping_rules` | Website Configuration | Set custom geo mapping rules for website |
|
|
770
|
+
| `upload_source_map_file` | Website Configuration | Upload source map file for a website |
|
|
771
|
+
| `clear_source_map_upload_configuration` | Website Configuration | Clear source map upload configuration for a website |
|
|
724
772
|
|
|
725
773
|
|
|
726
774
|
## Tool Filtering
|
|
@@ -729,30 +777,29 @@ The MCP server supports selective tool loading to optimize performance and reduc
|
|
|
729
777
|
|
|
730
778
|
### Available Tool Categories
|
|
731
779
|
|
|
732
|
-
- **`
|
|
733
|
-
-
|
|
734
|
-
-
|
|
735
|
-
-
|
|
736
|
-
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
-
|
|
740
|
-
-
|
|
741
|
-
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
-
|
|
745
|
-
-
|
|
746
|
-
-
|
|
747
|
-
|
|
780
|
+
- **`router`**: Unified application and infrastructure management
|
|
781
|
+
- `manage_instana_resources`: Single tool for application metrics, alert configurations, settings, and catalog
|
|
782
|
+
- Supports application perspectives, endpoints, services, and manual services
|
|
783
|
+
- Manages both application-specific and global alert configurations
|
|
784
|
+
- Provides access to application tag catalog and metric catalog
|
|
785
|
+
|
|
786
|
+
- **`dashboard`**: Custom dashboard management
|
|
787
|
+
- `manage_custom_dashboards`: CRUD operations for custom dashboards
|
|
788
|
+
- Supports dashboard creation, retrieval, updates, and deletion
|
|
789
|
+
- Manages shareable users and API tokens for dashboards
|
|
790
|
+
|
|
791
|
+
- **`infra`**: Infrastructure analysis tools
|
|
792
|
+
- `analyze_infrastructure_elicitation`: Two-pass infrastructure analysis with entity/metric elicitation
|
|
793
|
+
- Supports multiple entity types (JVM, Kubernetes, Docker, hosts, databases, etc.)
|
|
794
|
+
- Flexible metric aggregation, filtering, grouping, and time range queries
|
|
795
|
+
|
|
796
|
+
- **`automation`**: Automation action tools
|
|
797
|
+
- Action catalog management and action execution
|
|
798
|
+
- Action history and instance tracking
|
|
748
799
|
|
|
749
800
|
- **`events`**: Event monitoring tools
|
|
750
801
|
- Events: Kubernetes events, agent monitoring, incidents, issues, changes and system event tracking
|
|
751
802
|
|
|
752
|
-
- **`automation`**: Automation-related tools
|
|
753
|
-
- Action Catalog: Automation action discovery and management
|
|
754
|
-
- Action History: Tracking and managing automation action history
|
|
755
|
-
|
|
756
803
|
- **`website`**: Website monitoring tools
|
|
757
804
|
- Website Metrics: Performance measurement for websites
|
|
758
805
|
- Website Catalog: Website metadata and definitions
|
|
@@ -764,14 +811,20 @@ The MCP server supports selective tool loading to optimize performance and reduc
|
|
|
764
811
|
#### Using CLI (PyPI Installation)
|
|
765
812
|
|
|
766
813
|
```bash
|
|
767
|
-
# Enable only
|
|
768
|
-
mcp-instana --tools
|
|
814
|
+
# Enable only router (unified app/infra management) and events tools
|
|
815
|
+
mcp-instana --tools router,events --transport streamable-http
|
|
816
|
+
|
|
817
|
+
# Enable only infrastructure analysis tools
|
|
818
|
+
mcp-instana --tools infra --transport streamable-http
|
|
769
819
|
|
|
770
|
-
# Enable
|
|
771
|
-
mcp-instana --tools
|
|
820
|
+
# Enable router and infrastructure analysis
|
|
821
|
+
mcp-instana --tools router,infra --transport streamable-http
|
|
772
822
|
|
|
773
|
-
# Enable
|
|
774
|
-
mcp-instana --tools
|
|
823
|
+
# Enable events and website tools
|
|
824
|
+
mcp-instana --tools events,website --transport streamable-http
|
|
825
|
+
|
|
826
|
+
# Enable dashboard and router tools
|
|
827
|
+
mcp-instana --tools dashboard,router --transport streamable-http
|
|
775
828
|
|
|
776
829
|
# Enable all tools (default behavior)
|
|
777
830
|
mcp-instana --transport streamable-http
|
|
@@ -783,14 +836,20 @@ mcp-instana --list-tools
|
|
|
783
836
|
#### Using Development Installation
|
|
784
837
|
|
|
785
838
|
```bash
|
|
786
|
-
# Enable only
|
|
787
|
-
uv run src/core/server.py --tools
|
|
839
|
+
# Enable only router (unified app/infra management) and events tools
|
|
840
|
+
uv run src/core/server.py --tools router,events --transport streamable-http
|
|
841
|
+
|
|
842
|
+
# Enable only infrastructure analysis tools
|
|
843
|
+
uv run src/core/server.py --tools infra --transport streamable-http
|
|
844
|
+
|
|
845
|
+
# Enable router and infrastructure analysis
|
|
846
|
+
uv run src/core/server.py --tools router,infra --transport streamable-http
|
|
788
847
|
|
|
789
|
-
# Enable
|
|
790
|
-
uv run src/core/server.py --tools
|
|
848
|
+
# Enable events and website tools
|
|
849
|
+
uv run src/core/server.py --tools events,website --transport streamable-http
|
|
791
850
|
|
|
792
|
-
# Enable
|
|
793
|
-
uv run src/core/server.py --tools
|
|
851
|
+
# Enable dashboard and router tools
|
|
852
|
+
uv run src/core/server.py --tools dashboard,router --transport streamable-http
|
|
794
853
|
|
|
795
854
|
# Enable all tools (default behavior)
|
|
796
855
|
uv run src/core/server.py --transport streamable-http
|
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
src/observability.py,sha256=FQIMF4reR-UtXqnBSa3Ub0wuPvlf9VNSTeMieJmFdMM,959
|
|
3
3
|
src/application/__init__.py,sha256=cfWHjA5NzAvL0jcekaIO3NTe5DRtznYRqg9_8hVwSzc,37
|
|
4
|
-
src/application/application_alert_config.py,sha256=
|
|
5
|
-
src/application/application_analyze.py,sha256=
|
|
6
|
-
src/application/
|
|
7
|
-
src/application/
|
|
8
|
-
src/application/
|
|
9
|
-
src/application/
|
|
10
|
-
src/application/
|
|
11
|
-
src/application/
|
|
4
|
+
src/application/application_alert_config.py,sha256=AtJb1lI-aV6bPQh6P0r-z1NLvnju0-LuLAOn2ugiSGc,39852
|
|
5
|
+
src/application/application_analyze.py,sha256=_K-mSjo9Gj6-X62vFb6q-LHA4qfWgnRLf4HlKMAD7pM,28442
|
|
6
|
+
src/application/application_call_group.py,sha256=dAhFZZXcRmFJG6rsHStfSmvBaB0QjW1jNstRnntmQqs,22031
|
|
7
|
+
src/application/application_catalog.py,sha256=_aanJOdx_ObFJiRl0v5BZHUcOuyRSjqYH_M-uCJbpEs,6233
|
|
8
|
+
src/application/application_global_alert_config.py,sha256=6k0cRQ4tlud6bcPCu2GxGjGJJzJxoR_7-Y2AQJUbPKA,39203
|
|
9
|
+
src/application/application_metrics.py,sha256=2TPhM0mx6L0yuUmGgxEY5YSTaGO564choq7HycAu9UY,22514
|
|
10
|
+
src/application/application_resources.py,sha256=TiVykV2iEsaBkpaFuRvwyfpfcsjO1R6eE-4EvJuJ_qw,22682
|
|
11
|
+
src/application/application_settings.py,sha256=uXm528vt_qqMFRnnLerKM48xAjInap1ksNAVcz6-i94,41436
|
|
12
|
+
src/application/application_topology.py,sha256=sauSzN1zhj6USpDX582lGen_8DglR6LMr4Se-5Vuj2k,4978
|
|
12
13
|
src/automation/action_catalog.py,sha256=jivR73riqBt-MGDnhSoEsshG7bHk7JpxvVuRx7FCtOA,17493
|
|
13
14
|
src/automation/action_history.py,sha256=aMHUd5RLMrgdDvJXv0x6dkUA7I_35O0A89RPhFUfORI,16494
|
|
14
15
|
src/core/__init__.py,sha256=gZdGV4TVETqe3XV-_lzQMw0IgyTTCqYYgP3PH9YdWbU,30
|
|
15
|
-
src/core/
|
|
16
|
-
src/core/
|
|
16
|
+
src/core/custom_dashboard_smart_router_tool.py,sha256=MMp72caS237290omLp3rIOxzGjyMxiDsLib0HemXVno,4829
|
|
17
|
+
src/core/server.py,sha256=5ixkYOG1NP_hErTOF6Z6P6n8ze3nKCesY1rmjozUMXM,22840
|
|
18
|
+
src/core/smart_router_tool.py,sha256=ChsCZbz_4oMDDgrfxfqWpLCGDDzR5QGeXOLwFFDndCM,23713
|
|
19
|
+
src/core/utils.py,sha256=NshH9BVkAqz9Ek0OeY3m5HgWJMwww1BeJAetD5jqKaY,12048
|
|
20
|
+
src/custom_dashboard/custom_dashboard_tools.py,sha256=ysrSlw9z6DctdHRgeDp2yZHsjLWnGijcW1-S-Ak10cM,17804
|
|
17
21
|
src/event/__init__.py,sha256=ru-xCHU9xksGf9aJslvI37-6SI2yoBOpsoaED-vbaaQ,31
|
|
18
22
|
src/event/events_tools.py,sha256=ajCARRjxd6tkqH_fdFC1cOg9TYRV_gJE4BBVqDmyLV0,45365
|
|
19
23
|
src/infrastructure/__init__.py,sha256=xZuRO1Zb2iPyO5G3PRM90dfesaFheL7DMSSJMujtLVk,40
|
|
20
|
-
src/infrastructure/
|
|
21
|
-
src/infrastructure/
|
|
22
|
-
src/infrastructure/
|
|
23
|
-
src/infrastructure/
|
|
24
|
-
src/infrastructure/
|
|
24
|
+
src/infrastructure/elicitation_handler.py,sha256=vMp-MpXn_10vNV2Fmw7Fy0WVoWxqe9lMDoheL7iD6SM,15746
|
|
25
|
+
src/infrastructure/entity_registry.py,sha256=LnxPo28ZOejh-8IGp-6gnFKaHzUhJWlDHifzVV9Qx4o,11946
|
|
26
|
+
src/infrastructure/infrastructure_analyze_new.py,sha256=uUMR_edB3XlRZUnMQyKS74ECapCJ4XFn0krPj3IAOTE,27109
|
|
27
|
+
src/infrastructure/infrastructure_analyze_old.py,sha256=D64h93mPTkkpCM_RplgBana_-_KIYgyYvFmpzVy6rlM,28935
|
|
28
|
+
src/infrastructure/infrastructure_catalog.py,sha256=hrLe3wofwaQ42GD8CD6cKv6Q5nFZjoPKl6mWNjyKYY8,30578
|
|
29
|
+
src/infrastructure/infrastructure_metrics.py,sha256=iu6WYmiCZZxA7zdpmWfhjPLDK0it1i6eeM2HBnbQ8Vk,9867
|
|
30
|
+
src/infrastructure/infrastructure_resources.py,sha256=jQbLwASvw6AKpG-Q5xSVAOsplltEOR0Fh0t2c6YicfY,28848
|
|
31
|
+
src/infrastructure/infrastructure_topology.py,sha256=T9NQ2cgDd1yKJQUhohpjbZwPkaMPnwiiVaKDm-PK7Kk,15301
|
|
25
32
|
src/log/__init__.py,sha256=NwPZccMqR5aR6PrISe760gkABtpg7zpbwOK-uMPB-_Y,29
|
|
26
33
|
src/log/log_alert_configuration.py,sha256=-8ORRo889n4X4GalwhTQa9uHU4JuERy2OfnhP7k6LOM,18430
|
|
27
34
|
src/prompts/__init__.py,sha256=oXt7rf_EASRtgL43lKRgH8xhX6abJ3fhpHfarIlkFog,405
|
|
@@ -30,7 +37,7 @@ src/prompts/application/application_alerts.py,sha256=1-SRn2mnd8BlT8vXLp7XmcEKUBO
|
|
|
30
37
|
src/prompts/application/application_catalog.py,sha256=Vy8Yuf9uxCIVQTi3gUdHVFPjjkIhl4-gQY7luajwiyQ,870
|
|
31
38
|
src/prompts/application/application_metrics.py,sha256=6-N69NB9HkoYgB1Id4C8rYpQIF3EIxzIpN-j72Xf17o,2674
|
|
32
39
|
src/prompts/application/application_resources.py,sha256=YpbSVQbf9RHcidx51tJu00OytjfnyBfzN-_RFC5tldQ,954
|
|
33
|
-
src/prompts/application/application_settings.py,sha256=
|
|
40
|
+
src/prompts/application/application_settings.py,sha256=sjmdTRmQSVKjoP5IAxg2j0J8ne3bJzOoeSLjy0qYFtQ,5415
|
|
34
41
|
src/prompts/application/application_topology.py,sha256=BpzYUWMoVhnxVyjQjlEBI_s5auSy8Gy-dqa04mOTvtc,1024
|
|
35
42
|
src/prompts/events/__init__.py,sha256=mlwMIS0vVQwtMWlOYdScaMfrDsVhNBS4vGRw0-q0s4g,39
|
|
36
43
|
src/prompts/events/events_tools.py,sha256=R3BJbs1jLXjjV0Vo8AOmJtPVyinFqNgJlf306Kzt40M,5733
|
|
@@ -53,8 +60,8 @@ src/website/website_analyze.py,sha256=0VyK8f-9vW1LzZ70b7IxKzwqSL2bWw8wDFSOCx2pEr
|
|
|
53
60
|
src/website/website_catalog.py,sha256=Z21urtdTf8sU2SZiCwGq5OyPLaswS9lw12TCD9pS__4,7127
|
|
54
61
|
src/website/website_configuration.py,sha256=hBHSFgj6GXOfLvlq8p-tBU4KFQc99uS167DBz4cjjK0,35926
|
|
55
62
|
src/website/website_metrics.py,sha256=6McxbVYZq5i61Ml3QcVeHS86y2rCIPzdDuUDOxNtnMM,10954
|
|
56
|
-
mcp_instana-0.
|
|
57
|
-
mcp_instana-0.
|
|
58
|
-
mcp_instana-0.
|
|
59
|
-
mcp_instana-0.
|
|
60
|
-
mcp_instana-0.
|
|
63
|
+
mcp_instana-0.7.0.dist-info/METADATA,sha256=iXgm8enfWKJBkZcUDiYwGEVdXAhZI_HDcxbkzEfYdXU,44160
|
|
64
|
+
mcp_instana-0.7.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
65
|
+
mcp_instana-0.7.0.dist-info/entry_points.txt,sha256=p1aZ9Ks0aJKpoIy6Mk-08cGYAfkXMNbwYIlokm513A4,140
|
|
66
|
+
mcp_instana-0.7.0.dist-info/licenses/LICENSE.md,sha256=Ox7lseFP2kBRXBjsLweW1jLmWiCyrKjwF8ZUvCbKd70,11310
|
|
67
|
+
mcp_instana-0.7.0.dist-info/RECORD,,
|