Skip to main content
Glama

Flint Note

by disnet

search_notes_sql

Execute SQL SELECT queries to search and filter notes from the Flint Note vault. Retrieve data from tables like notes and note_metadata, with options for parameterized queries, field selection, and result limits.

Instructions

Direct SQL search against notes database for maximum flexibility. Only SELECT queries allowed.

Input Schema

NameRequiredDescriptionDefault
fieldsNoOptional array of field names to include in response. Supports dot notation for nested fields (e.g. "metadata.tags") and wildcard patterns (e.g. "metadata.*"). If not specified, all fields are returned.
limitNoMaximum number of results
paramsNoOptional parameters for parameterized queries
queryYesSQL SELECT query. Tables: notes (id, title, content, type, filename, path, created, updated, size), note_metadata (note_id, key, value, value_type)
timeoutNoQuery timeout in milliseconds
vault_idNoOptional vault ID to operate on. If not provided, uses the current active vault.

Input Schema (JSON Schema)

{ "properties": { "fields": { "description": "Optional array of field names to include in response. Supports dot notation for nested fields (e.g. \"metadata.tags\") and wildcard patterns (e.g. \"metadata.*\"). If not specified, all fields are returned.", "items": { "type": "string" }, "type": "array" }, "limit": { "default": 1000, "description": "Maximum number of results", "type": "number" }, "params": { "description": "Optional parameters for parameterized queries", "items": { "type": "string" }, "type": "array" }, "query": { "description": "SQL SELECT query. Tables: notes (id, title, content, type, filename, path, created, updated, size), note_metadata (note_id, key, value, value_type)", "type": "string" }, "timeout": { "default": 30000, "description": "Query timeout in milliseconds", "type": "number" }, "vault_id": { "description": "Optional vault ID to operate on. If not provided, uses the current active vault.", "type": "string" } }, "required": [ "query" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/disnet/flint-note'

If you have feedback or need assistance with the MCP directory API, please join our Discord server