@robinmordasiewicz/f5xc-api-mcp 1.0.84-2601020629 → 1.0.85-2601020714
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/CHANGELOG.md +1 -1
- package/README.md +4 -4
- package/dist/tools/generated/dependency-graph.json +1 -1
- package/manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
23
|
- API token authentication support
|
|
24
24
|
- P12 certificate (mTLS) authentication support
|
|
25
25
|
- Automatic URL normalization for various F5XC URL formats
|
|
26
|
-
-
|
|
26
|
+
- xcsh CLI command equivalents in every response
|
|
27
27
|
- Terraform HCL examples in every response
|
|
28
28
|
- MCP Resources for F5XC configuration objects via URI scheme
|
|
29
29
|
- Workflow prompts for common operations:
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ other MCP-compatible tools.
|
|
|
13
13
|
- **Domain-Based Documentation** - Tools organized by domains with intelligent 2-level and
|
|
14
14
|
3-level hierarchical navigation
|
|
15
15
|
- **Dual-Mode Operation** - Works without authentication (documentation mode) AND with authentication (execution mode)
|
|
16
|
-
- **
|
|
16
|
+
- **xcsh Integration** - Every response includes equivalent CLI commands
|
|
17
17
|
- **Terraform Examples** - Every response includes Terraform HCL examples
|
|
18
18
|
- **Multiple Auth Methods** - API token and P12 certificate (mTLS) support
|
|
19
19
|
- **URL Normalization** - Automatically handles various F5XC URL formats
|
|
@@ -211,11 +211,11 @@ When no credentials are provided, the server provides:
|
|
|
211
211
|
- OpenAPI specification documentation
|
|
212
212
|
- API operation explanations
|
|
213
213
|
- Parameter descriptions and validation
|
|
214
|
-
-
|
|
214
|
+
- xcsh command equivalents
|
|
215
215
|
- Terraform HCL examples
|
|
216
216
|
- JSON request templates
|
|
217
217
|
|
|
218
|
-
This mode is ideal for users who authenticate via
|
|
218
|
+
This mode is ideal for users who authenticate via xcsh or Terraform.
|
|
219
219
|
|
|
220
220
|
### Execution Mode (With Authentication)
|
|
221
221
|
|
|
@@ -377,7 +377,7 @@ wildcards only match a single subdomain level, not two levels (`tenant.staging`)
|
|
|
377
377
|
|
|
378
378
|
**Error Example:**
|
|
379
379
|
|
|
380
|
-
```
|
|
380
|
+
```text
|
|
381
381
|
Hostname/IP does not match certificate's altnames:
|
|
382
382
|
Host: tenant.staging.console.ves.volterra.io
|
|
383
383
|
Cert covers: DNS:*.console.ves.volterra.io, DNS:console.ves.volterra.io
|
package/manifest.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"display_name": "F5 Distributed Cloud API",
|
|
5
5
|
"version": "1.0.0",
|
|
6
6
|
"description": "MCP server for F5 Distributed Cloud API - AI-powered infrastructure management with 1500+ tools across 22 domains",
|
|
7
|
-
"long_description": "Enables AI assistants to manage F5 Distributed Cloud resources including HTTP load balancers, origin pools, WAF policies, DNS zones, and multi-cloud sites. Works in dual mode: documentation mode (no auth) or execution mode (with auth). Every response includes equivalent
|
|
7
|
+
"long_description": "Enables AI assistants to manage F5 Distributed Cloud resources including HTTP load balancers, origin pools, WAF policies, DNS zones, and multi-cloud sites. Works in dual mode: documentation mode (no auth) or execution mode (with auth). Every response includes equivalent xcsh CLI commands and Terraform HCL examples.",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Robin Mordasiewicz"
|
|
10
10
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinmordasiewicz/f5xc-api-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.85-2601020714",
|
|
4
4
|
"description": "F5 Distributed Cloud API MCP Server - Exposes F5XC APIs to AI assistants via Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"validate-generation": "tsx scripts/validate-generation.ts",
|
|
37
37
|
"generate-docs": "tsx scripts/generate-docs.ts",
|
|
38
38
|
"validate-cli-syntax": "tsx scripts/validate-cli-syntax.ts",
|
|
39
|
-
"validate-cli-commands": "bash scripts/validate-
|
|
39
|
+
"validate-cli-commands": "bash scripts/validate-xcsh-commands.sh",
|
|
40
40
|
"validate-docs": "npm run generate-docs && npm run validate-cli-commands",
|
|
41
41
|
"prepare": "npm run build",
|
|
42
42
|
"bundle": "mcpb pack",
|