Network
Validate RFC 8294 BGP community regex patterns against a set of communities, match sample AS-paths, and generate Cisco/Juniper/FRR route-policy output.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/bgp-community-string-regex-tester-and-looking-glass' \
-H 'Content-Type: application/json' \
-d '{"communityRegex":"^65000:","communitySet":"65000:100\n65000:101\n65000:200\n65001:500\nno-export","asPathRegex":"_65000_ (matches paths transiting AS65000)","asPath":"65001 65000 65002\n65000 65003 65004","vendorOutput":"cisco","caseSensitive":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/bgp-community-string-regex-tester-and-looking-glass| Name | Type | Required | Description |
|---|---|---|---|
| communityRegex | text | No | — |
| communitySet | textarea | No | — |
| asPathRegex | text | No | — |
| asPath | textarea | No | — |
| vendorOutput | select | Yes | — |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-bgp-community-string-regex-tester-and-looking-glass": {
"name": "bgp-community-string-regex-tester-and-looking-glass",
"description": "Validate RFC 8294 BGP community regex patterns against a set of communities, match sample AS-paths, and generate Cisco/Juniper/FRR route-policy output.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=bgp-community-string-regex-tester-and-looking-glass",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "bgp-community-string-regex-tester-and-looking-glass",
"arguments": {
"communityRegex": "^65000:",
"communitySet": "65000:100\n65000:101\n65000:200\n65001:500\nno-export",
"asPathRegex": "_65000_ (matches paths transiting AS65000)",
"asPath": "65001 65000 65002\n65000 65003 65004",
"vendorOutput": "cisco",
"caseSensitive": false
}
}
}| caseSensitive |
| checkbox |
| No |
| — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]