@robinmordasiewicz/f5xc-terraform-mcp 2.15.5 β 2.15.6
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 +109 -101
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,145 +1,153 @@
|
|
|
1
|
-
#
|
|
1
|
+
# MCP Registry
|
|
2
2
|
|
|
3
|
-
MCP
|
|
3
|
+
The MCP registry provides MCP clients with a list of MCP servers, like an app store for MCP servers.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[**π€ Publish my MCP server**](docs/modelcontextprotocol-io/quickstart.mdx) | [**β‘οΈ Live API docs**](https://registry.modelcontextprotocol.io/docs) | [**π Ecosystem vision**](docs/design/ecosystem-vision.md) | π **[Full documentation](./docs)**
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Development Status
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
# Run directly with npx
|
|
11
|
-
npx @robinmordasiewicz/f5xc-terraform-mcp
|
|
12
|
-
|
|
13
|
-
# Or install globally
|
|
14
|
-
npm install -g @robinmordasiewicz/f5xc-terraform-mcp
|
|
15
|
-
f5xc-terraform-mcp
|
|
16
|
-
```
|
|
9
|
+
**2025-10-24 update**: The Registry API has entered an **API freeze (v0.1)** π. For the next month or more, the API will remain stable with no breaking changes, allowing integrators to confidently implement support. This freeze applies to v0.1 while development continues on v0. We'll use this period to validate the API in real-world integrations and gather feedback to shape v1 for general availability. Thank you to everyone for your contributions and patienceβyour involvement has been key to getting us here!
|
|
17
10
|
|
|
18
|
-
|
|
11
|
+
**2025-09-08 update**: The registry has launched in preview π ([announcement blog post](https://blog.modelcontextprotocol.io/posts/2025-09-08-mcp-registry-preview/)). While the system is now more stable, this is still a preview release and breaking changes or data resets may occur. A general availability (GA) release will follow later. We'd love your feedback in [GitHub discussions](https://github.com/modelcontextprotocol/registry/discussions/new?category=ideas) or in the [#registry-dev Discord](https://discord.com/channels/1358869848138059966/1369487942862504016) ([joining details here](https://modelcontextprotocol.io/community/communication)).
|
|
19
12
|
|
|
20
|
-
|
|
13
|
+
Current key maintainers:
|
|
14
|
+
- **Adam Jones** (Anthropic) [@domdomegg](https://github.com/domdomegg)
|
|
15
|
+
- **Tadas Antanavicius** (PulseMCP) [@tadasant](https://github.com/tadasant)
|
|
16
|
+
- **Toby Padilla** (GitHub) [@toby](https://github.com/toby)
|
|
17
|
+
- **Radoslav (Rado) Dimitrov** (Stacklok) [@rdimitrov](https://github.com/rdimitrov)
|
|
21
18
|
|
|
22
|
-
|
|
19
|
+
## Contributing
|
|
23
20
|
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
chmod +x f5xc-terraform-mcp-*.mcpb
|
|
27
|
-
./f5xc-terraform-mcp-*.mcpb
|
|
28
|
-
```
|
|
21
|
+
We use multiple channels for collaboration - see [modelcontextprotocol.io/community/communication](https://modelcontextprotocol.io/community/communication).
|
|
29
22
|
|
|
30
|
-
|
|
23
|
+
Often (but not always) ideas flow through this pipeline:
|
|
31
24
|
|
|
32
|
-
|
|
25
|
+
- **[Discord](https://modelcontextprotocol.io/community/communication)** - Real-time community discussions
|
|
26
|
+
- **[Discussions](https://github.com/modelcontextprotocol/registry/discussions)** - Propose and discuss product/technical requirements
|
|
27
|
+
- **[Issues](https://github.com/modelcontextprotocol/registry/issues)** - Track well-scoped technical work
|
|
28
|
+
- **[Pull Requests](https://github.com/modelcontextprotocol/registry/pulls)** - Contribute work towards issues
|
|
33
29
|
|
|
34
|
-
|
|
35
|
-
2. Extract to user directory (e.g., `~/node/`)
|
|
36
|
-
3. Add to PATH: `export PATH="$HOME/node/bin:$PATH"`
|
|
37
|
-
4. Use npx as normal
|
|
30
|
+
### Quick start:
|
|
38
31
|
|
|
39
|
-
|
|
32
|
+
#### Pre-requisites
|
|
40
33
|
|
|
41
|
-
|
|
34
|
+
- **Docker**
|
|
35
|
+
- **Go 1.24.x**
|
|
36
|
+
- **ko** - Container image builder for Go ([installation instructions](https://ko.build/install/))
|
|
37
|
+
- **golangci-lint v2.4.0**
|
|
42
38
|
|
|
43
|
-
|
|
39
|
+
#### Running the server
|
|
44
40
|
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"f5xc-terraform": {
|
|
49
|
-
"command": "npx",
|
|
50
|
-
"args": ["-y", "@robinmordasiewicz/f5xc-terraform-mcp"]
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
41
|
+
```bash
|
|
42
|
+
# Start full development environment
|
|
43
|
+
make dev-compose
|
|
54
44
|
```
|
|
55
45
|
|
|
56
|
-
|
|
46
|
+
This starts the registry at [`localhost:8080`](http://localhost:8080) with PostgreSQL. The database uses ephemeral storage and is reset each time you restart the containers, ensuring a clean state for development and testing.
|
|
57
47
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
```
|
|
48
|
+
**Note:** The registry uses [ko](https://ko.build) to build container images. The `make dev-compose` command automatically builds the registry image with ko and loads it into your local Docker daemon before starting the services.
|
|
49
|
+
|
|
50
|
+
By default, the registry seeds from the production API with a filtered subset of servers (to keep startup fast). This ensures your local environment mirrors production behavior and all seed data passes validation. For offline development you can seed from a file without validation with `MCP_REGISTRY_SEED_FROM=data/seed.json MCP_REGISTRY_ENABLE_REGISTRY_VALIDATION=false make dev-compose`.
|
|
51
|
+
|
|
52
|
+
The setup can be configured with environment variables in [docker-compose.yml](./docker-compose.yml) - see [.env.example](./.env.example) for a reference.
|
|
67
53
|
|
|
68
|
-
|
|
54
|
+
<details>
|
|
55
|
+
<summary>Alternative: Running a pre-built Docker image</summary>
|
|
56
|
+
|
|
57
|
+
Pre-built Docker images are automatically published to GitHub Container Registry:
|
|
69
58
|
|
|
70
59
|
```bash
|
|
71
|
-
|
|
72
|
-
|
|
60
|
+
# Run latest stable release
|
|
61
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:latest
|
|
73
62
|
|
|
74
|
-
|
|
63
|
+
# Run latest from main branch (continuous deployment)
|
|
64
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:main
|
|
75
65
|
|
|
76
|
-
|
|
66
|
+
# Run specific release version
|
|
67
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:v1.0.0
|
|
77
68
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"mcpServers": {
|
|
81
|
-
"f5xc-terraform": {
|
|
82
|
-
"command": "npx",
|
|
83
|
-
"args": ["-y", "@robinmordasiewicz/f5xc-terraform-mcp"]
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
69
|
+
# Run development build from main branch
|
|
70
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:main-20250906-abc123d
|
|
87
71
|
```
|
|
88
72
|
|
|
89
|
-
|
|
73
|
+
**Available tags:**
|
|
74
|
+
- **Releases**: `latest`, `v1.0.0`, `v1.1.0`, etc.
|
|
75
|
+
- **Continuous**: `main` (latest main branch build)
|
|
76
|
+
- **Development**: `main-<date>-<sha>` (specific commit builds)
|
|
90
77
|
|
|
91
|
-
|
|
78
|
+
</details>
|
|
92
79
|
|
|
93
|
-
|
|
94
|
-
|------|-------------|
|
|
95
|
-
| `f5xc_terraform_discover` | Discovery meta-tool - lists available tools and their schemas |
|
|
96
|
-
| `f5xc_terraform_docs` | Search, get, or list provider documentation (resources, data sources, functions, guides) |
|
|
97
|
-
| `f5xc_terraform_api` | Search OpenAPI specs, get spec details, find endpoints, get schema definitions |
|
|
98
|
-
| `f5xc_terraform_subscription` | Get subscription tier requirements for resources |
|
|
99
|
-
| `f5xc_terraform_addon` | Get addon service activation information |
|
|
100
|
-
| `f5xc_terraform_get_summary` | Get provider overview with statistics |
|
|
80
|
+
#### Publishing a server
|
|
101
81
|
|
|
102
|
-
|
|
82
|
+
To publish a server, we've built a simple CLI. You can use it with:
|
|
103
83
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
```
|
|
84
|
+
```bash
|
|
85
|
+
# Build the latest CLI
|
|
86
|
+
make publisher
|
|
108
87
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
f5xc_terraform_docs(operation: "get", name: "http_loadbalancer", type: "resource")
|
|
88
|
+
# Use it!
|
|
89
|
+
./bin/mcp-publisher --help
|
|
112
90
|
```
|
|
113
91
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
92
|
+
See [the publisher guide](./docs/modelcontextprotocol-io/quickstart.mdx) for more details.
|
|
93
|
+
|
|
94
|
+
#### Other commands
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
# Run lint, unit tests and integration tests
|
|
98
|
+
make check
|
|
117
99
|
```
|
|
118
100
|
|
|
119
|
-
|
|
101
|
+
There are also a few more helpful commands for development. Run `make help` to learn more, or look in [Makefile](./Makefile).
|
|
102
|
+
|
|
103
|
+
<!--
|
|
104
|
+
For Claude and other AI tools: Always prefer make targets over custom commands where possible.
|
|
105
|
+
-->
|
|
106
|
+
|
|
107
|
+
## Architecture
|
|
108
|
+
|
|
109
|
+
### Project Structure
|
|
110
|
+
|
|
120
111
|
```
|
|
121
|
-
|
|
112
|
+
βββ cmd/ # Application entry points
|
|
113
|
+
β βββ publisher/ # Server publishing tool
|
|
114
|
+
βββ data/ # Seed data
|
|
115
|
+
βββ deploy/ # Deployment configuration (Pulumi)
|
|
116
|
+
βββ docs/ # Documentation
|
|
117
|
+
βββ internal/ # Private application code
|
|
118
|
+
β βββ api/ # HTTP handlers and routing
|
|
119
|
+
β βββ auth/ # Authentication (GitHub OAuth, JWT, namespace blocking)
|
|
120
|
+
β βββ config/ # Configuration management
|
|
121
|
+
β βββ database/ # Data persistence (PostgreSQL)
|
|
122
|
+
β βββ service/ # Business logic
|
|
123
|
+
β βββ telemetry/ # Metrics and monitoring
|
|
124
|
+
β βββ validators/ # Input validation
|
|
125
|
+
βββ pkg/ # Public packages
|
|
126
|
+
β βββ api/ # API types and structures
|
|
127
|
+
β β βββ v0/ # Version 0 API types
|
|
128
|
+
β βββ model/ # Data models for server.json
|
|
129
|
+
βββ scripts/ # Development and testing scripts
|
|
130
|
+
βββ tests/ # Integration tests
|
|
131
|
+
βββ tools/ # CLI tools and utilities
|
|
132
|
+
βββ validate-*.sh # Schema validation tools
|
|
122
133
|
```
|
|
123
134
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
- **144+ Terraform Resources** - Full documentation for all F5XC resources
|
|
127
|
-
- **270+ OpenAPI Specifications** - Complete API reference for F5XC services
|
|
128
|
-
- **Subscription Tier Info** - Which features require which subscription level
|
|
129
|
-
- **Addon Service Workflows** - Activation status and requirements
|
|
130
|
-
- **Example Configurations** - Working Terraform examples for each resource
|
|
135
|
+
### Authentication
|
|
131
136
|
|
|
132
|
-
|
|
137
|
+
Publishing supports multiple authentication methods:
|
|
138
|
+
- **GitHub OAuth** - For publishing by logging into GitHub
|
|
139
|
+
- **GitHub OIDC** - For publishing from GitHub Actions
|
|
140
|
+
- **DNS verification** - For proving ownership of a domain and its subdomains
|
|
141
|
+
- **HTTP verification** - For proving ownership of a domain
|
|
133
142
|
|
|
134
|
-
The
|
|
143
|
+
The registry validates namespace ownership when publishing. E.g. to publish...:
|
|
144
|
+
- `io.github.domdomegg/my-cool-mcp` you must login to GitHub as `domdomegg`, or be in a GitHub Action on domdomegg's repos
|
|
145
|
+
- `me.adamjones/my-cool-mcp` you must prove ownership of `adamjones.me` via DNS or HTTP challenge
|
|
135
146
|
|
|
136
|
-
##
|
|
147
|
+
## Community Projects
|
|
137
148
|
|
|
138
|
-
|
|
139
|
-
- [GitHub Repository](https://github.com/robinmordasiewicz/terraform-provider-f5xc)
|
|
140
|
-
- [npm Package](https://www.npmjs.com/package/@robinmordasiewicz/f5xc-terraform-mcp)
|
|
141
|
-
- [F5 Distributed Cloud Documentation](https://docs.cloud.f5.com/)
|
|
149
|
+
Check out [community projects](docs/community-projects.md) to explore notable registry-related work created by the community.
|
|
142
150
|
|
|
143
|
-
##
|
|
151
|
+
## More documentation
|
|
144
152
|
|
|
145
|
-
|
|
153
|
+
See the [documentation](./docs) for more details if your question has not been answered here!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinmordasiewicz/f5xc-terraform-mcp",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.6",
|
|
4
4
|
"description": "MCP server for F5 Distributed Cloud Terraform provider - documentation, 270+ OpenAPI specs, subscription info, and addon activation workflows for AI assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|