atlas-mcp-server

by cyanheads
Verified

neo4j_search

Search the database for nodes with specific property values. Supports case-insensitive, wildcard, and fuzzy matching with pagination options.

Input Schema

NameRequiredDescriptionDefault
arrayPropertiesNoOptional: Custom array properties to check (in addition to default ones like tags, categories, etc).
caseInsensitiveNoOptional: When true, search ignores letter case.
exactMatchNoOptional: When true, requires exact matches rather than partial matches.
fuzzyNoOptional: When true, enables fuzzy matching for approximate string matches.
fuzzyThresholdNoOptional: Threshold for fuzzy matching (0.0 to 1.0, default 0.5).
labelNoOptional: neo4j node label filter.
limitNoOptional: Number of results per page (default: 100).
pageNoOptional: Page number for paginated results (default: 1).
propertyYesProperty to search on.
valueYesSearch term for CONTAINS filter. Must be at least 1 character long.
wildcardNoOptional: When true, '*' and '?' in search term are treated as wildcards.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "arrayProperties": { "description": "Optional: Custom array properties to check (in addition to default ones like tags, categories, etc).", "items": { "type": "string" }, "type": "array" }, "caseInsensitive": { "description": "Optional: When true, search ignores letter case.", "type": "boolean" }, "exactMatch": { "description": "Optional: When true, requires exact matches rather than partial matches.", "type": "boolean" }, "fuzzy": { "description": "Optional: When true, enables fuzzy matching for approximate string matches.", "type": "boolean" }, "fuzzyThreshold": { "description": "Optional: Threshold for fuzzy matching (0.0 to 1.0, default 0.5).", "maximum": 1, "minimum": 0, "type": "number" }, "label": { "description": "Optional: neo4j node label filter.", "type": "string" }, "limit": { "description": "Optional: Number of results per page (default: 100).", "maximum": 1000, "minimum": 1, "type": "integer" }, "page": { "description": "Optional: Page number for paginated results (default: 1).", "minimum": 1, "type": "integer" }, "property": { "description": "Property to search on.", "minLength": 1, "type": "string" }, "value": { "description": "Search term for CONTAINS filter. Must be at least 1 character long.", "minLength": 1, "type": "string" }, "wildcard": { "description": "Optional: When true, '*' and '?' in search term are treated as wildcards.", "type": "boolean" } }, "required": [ "property", "value" ], "type": "object" }