tcp_proxy_delete
Delete unused or insecure TCP proxies in the railway-mcp server to manage security and clean up endpoints. Requires proxy ID for removal. Use with tcp_proxy_list for efficient proxy management.
Instructions
[API] Delete a TCP proxy
⚡️ Best for: ✓ Removing unused proxies ✓ Security management ✓ Endpoint cleanup
⚠️ Not for: × Temporary proxy disabling × Port updates
→ Prerequisites: tcp_proxy_list
→ Related: service_update
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proxyId | Yes | ID of the TCP proxy to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"proxyId": {
"description": "ID of the TCP proxy to delete",
"type": "string"
}
},
"required": [
"proxyId"
],
"type": "object"
}