Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/pages/docs/charts/fastmcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@ ingress:

networkPolicy:
enabled: true
extraEgress:
- to:
- ipBlock:
cidr: 10.0.0.0/8
ports:
- protocol: TCP
port: 443

resources:
requests:
Expand Down Expand Up @@ -199,6 +206,23 @@ auth:

When using JWT with NetworkPolicy or cluster egress controls, allow the JWKS endpoint.

## Network Policy

`networkPolicy.enabled=true` restricts inbound traffic to the MCP service port. Use `networkPolicy.extraEgress` when
tools, S3/Git sources, JWT JWKS discovery, or package installation need outbound access to specific destinations.

```yaml
networkPolicy:
enabled: true
extraEgress:
- to:
- ipBlock:
cidr: 10.0.0.0/8
ports:
- protocol: TCP
port: 443
```

## Gateway API

Gateway API renders only an `HTTPRoute`; the Gateway itself is owned by the platform.
Expand Down Expand Up @@ -271,6 +295,7 @@ curl http://localhost:8000/mcp
| `gatewayAPI.enabled` | `false` | Render an HTTPRoute. |
| `ingress.enabled` | `false` | Render an Ingress. |
| `networkPolicy.enabled` | `false` | Render a NetworkPolicy for the MCP port. |
| `networkPolicy.extraEgress` | `[]` | Additional NetworkPolicy egress rules. |
| `autoscaling.enabled` | `false` | Render an HPA. |
| `pdb.enabled` | `false` | Render a PodDisruptionBudget. |

Expand Down
1 change: 1 addition & 0 deletions src/pages/playground.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const siteSyncPlaygroundConfigs: Record<string, string> = {
'adguard-home': 'src/data/playground-configs.ts',
booklore: 'src/data/playground-configs.ts',
changedetection: 'src/data/playground-configs.ts',
'fastmcp-server': 'src/data/playground-configs.ts',
medikeep: 'src/data/playground-configs.ts',
memcached: 'src/data/playground-configs.ts',
notediscovery: 'src/data/playground-configs.ts',
Expand Down