@usex/mikrotik-mcp 5.6.0 → 5.8.0
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.
- package/README.md +61 -22
- package/dist/cli.js +75679 -4194
- package/dist/index.d.ts +1 -1
- package/dist/index.js +15035 -66
- package/dist/shared/cli-ejryxvb3.js +13 -0
- package/dist/shared/library-hsq1a106.js +11 -0
- package/dist/shared/{cli-gyqfq9j6.js → library-srhzw8ym.js} +36138 -27615
- package/dist/ui/aaa.html +48 -58
- package/dist/ui/connected-devices.html +48 -58
- package/dist/ui/dashboard.html +48 -58
- package/dist/ui/firewall-audit.html +48 -58
- package/dist/ui/firewall.html +49 -59
- package/dist/ui/interfaces.html +48 -58
- package/dist/ui/observability.html +169 -69
- package/dist/ui/records.html +49 -59
- package/package.json +34 -25
- package/prompts/build-tunnel-transactionally.md +13 -10
- package/schemas/README.md +1 -1
- package/schemas/config.schema.json +79 -0
- package/schemas/tool-catalog.json +514 -10
- package/schemas/tools/audit_service_contracts.json +7 -0
- package/schemas/tools/create_investigation.json +42 -0
- package/schemas/tools/create_service_contract.json +53 -0
- package/schemas/tools/get_investigation.json +14 -0
- package/schemas/tools/inspect_flow_path.json +50 -0
- package/schemas/tools/list_client_flow_candidates.json +14 -0
- package/schemas/tools/list_investigations.json +7 -0
- package/schemas/tools/list_service_contracts.json +7 -0
- package/schemas/tools/list_service_probe_targets.json +7 -0
- package/schemas/tools/run_service_contract.json +14 -0
- package/schemas/tools/service_contract_history.json +14 -0
- package/schemas/tools/start_rollout.json +21 -0
- package/schemas/tools/trace_round_trip.json +129 -0
- package/dist/shared/cli-h41j14aw.js +0 -13
- package/dist/shared/library-135yzct0.js +0 -45586
- package/dist/shared/library-v52e871r.js +0 -13
package/dist/index.d.ts
CHANGED
|
@@ -421,4 +421,4 @@ declare function getSafeModeManager(deviceName: string): SafeModeManager;
|
|
|
421
421
|
declare const allToolModules: ToolModule[];
|
|
422
422
|
declare const VERSION: string;
|
|
423
423
|
declare const SERVER_NAME = "mikrotik-mcp";
|
|
424
|
-
export {
|
|
424
|
+
export { DeviceConfig, DeviceConfigSchema, MikroTikSSHClient, MikrotikConfig, MikrotikConfigSchema, RegisterableTool, SERVER_NAME, SafeModeManager, ToolContext, ToolModule, VERSION, allToolModules, createServer, defineTool, executeMikrotikCommand, getConfig, getDevice, getSafeModeManager, listDevices, loadConfig, registerTools, resolveDeviceName, setConfig };
|