search_graph_nodes
ActiveTool of RationalBloks
Search for nodes by property values in a deployed graph project. Supports exact match and contains search (prefix value with ~ for contains). Examples: Exact: filters: {"name": "Alan Turing"} Contains: filters: {"name": "~turing"} (case-insensitive) Combined: entity_type: "person", filters: {"field": "~physics"} Without entity_type, searches ALL node types.
Parameters schema
{
"type": "object",
"required": [
"project_id",
"filters"
],
"properties": {
"limit": {
"type": "integer",
"description": "Max results (default: 100, max: 1000)"
},
"offset": {
"type": "integer",
"description": "Pagination offset (default: 0)"
},
"filters": {
"type": "object",
"description": "Property filters. Prefix value with ~ for contains search."
},
"project_id": {
"type": "string",
"description": "Project ID (UUID)"
},
"entity_type": {
"type": "string",
"description": "Entity key to filter by (optional — omit to search all types)"
},
"environment": {
"type": "string",
"description": "Environment: staging or production (default: staging)"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
RationalBloks
https://github.com/rationalbloks/rationalbloks-mcp
1/7 registries