Skip to main content
Glama
0001_snapshot.json18.9 kB
{ "version": "6", "dialect": "sqlite", "id": "db3c7c37-dabd-4f9a-a71a-6a18151aaa76", "prevId": "7f08e357-0d95-48bc-b18b-96f203be70a1", "tables": { "capture_collections": { "name": "capture_collections", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "capture_id": { "name": "capture_id", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "collection_id": { "name": "collection_id", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "added_reason": { "name": "added_reason", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "sort_order": { "name": "sort_order", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 0 }, "created_at": { "name": "created_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "capture_collections_capture_id_captures_id_fk": { "name": "capture_collections_capture_id_captures_id_fk", "tableFrom": "capture_collections", "tableTo": "captures", "columnsFrom": [ "capture_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "capture_collections_collection_id_collections_id_fk": { "name": "capture_collections_collection_id_collections_id_fk", "tableFrom": "capture_collections", "tableTo": "collections", "columnsFrom": [ "collection_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "captures": { "name": "captures", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "text": { "name": "text", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "raw_input": { "name": "raw_input", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "capture_type": { "name": "capture_type", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'action'" }, "priority": { "name": "priority", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'medium'" }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'inbox'" }, "context_id": { "name": "context_id", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "confidence": { "name": "confidence", "type": "real", "primaryKey": false, "notNull": false, "autoincrement": false }, "ai_reasoning": { "name": "ai_reasoning", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "tags": { "name": "tags", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "context_tags": { "name": "context_tags", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "keywords": { "name": "keywords", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "start_date": { "name": "start_date", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "due_date": { "name": "due_date", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "completed_at": { "name": "completed_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "last_reviewed_at": { "name": "last_reviewed_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "review_score": { "name": "review_score", "type": "real", "primaryKey": false, "notNull": false, "autoincrement": false }, "review_notes": { "name": "review_notes", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "capture_source": { "name": "capture_source", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'manual'" }, "created_at": { "name": "created_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "updated_at": { "name": "updated_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "captures_context_id_contexts_id_fk": { "name": "captures_context_id_contexts_id_fk", "tableFrom": "captures", "tableTo": "contexts", "columnsFrom": [ "context_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "collections": { "name": "collections", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "display_name": { "name": "display_name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "color": { "name": "color", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "icon": { "name": "icon", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "is_archive": { "name": "is_archive", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "context_id": { "name": "context_id", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "is_premium": { "name": "is_premium", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": true }, "created_at": { "name": "created_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "updated_at": { "name": "updated_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": { "collections_name_unique": { "name": "collections_name_unique", "columns": [ "name" ], "isUnique": true } }, "foreignKeys": { "collections_context_id_contexts_id_fk": { "name": "collections_context_id_contexts_id_fk", "tableFrom": "collections", "tableTo": "contexts", "columnsFrom": [ "context_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "config": { "name": "config", "columns": { "key": { "name": "key", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "value": { "name": "value", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "category": { "name": "category", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'general'" }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "updated_at": { "name": "updated_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "contexts": { "name": "contexts", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "display_name": { "name": "display_name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "color": { "name": "color", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "keywords": { "name": "keywords", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "patterns": { "name": "patterns", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "active": { "name": "active", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": true }, "priority": { "name": "priority", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 0 }, "created_at": { "name": "created_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "updated_at": { "name": "updated_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": { "contexts_name_unique": { "name": "contexts_name_unique", "columns": [ "name" ], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "learning_patterns": { "name": "learning_patterns", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "input_keywords": { "name": "input_keywords", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "input_length": { "name": "input_length", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "input_patterns": { "name": "input_patterns", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'[]'" }, "chosen_context_id": { "name": "chosen_context_id", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "chosen_type": { "name": "chosen_type", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "original_confidence": { "name": "original_confidence", "type": "real", "primaryKey": false, "notNull": true, "autoincrement": false }, "was_correct": { "name": "was_correct", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "user_corrected_context_id": { "name": "user_corrected_context_id", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "user_corrected_type": { "name": "user_corrected_type", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "weight": { "name": "weight", "type": "real", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 1 }, "created_at": { "name": "created_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "learning_patterns_chosen_context_id_contexts_id_fk": { "name": "learning_patterns_chosen_context_id_contexts_id_fk", "tableFrom": "learning_patterns", "tableTo": "contexts", "columnsFrom": [ "chosen_context_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "learning_patterns_user_corrected_context_id_contexts_id_fk": { "name": "learning_patterns_user_corrected_context_id_contexts_id_fk", "tableFrom": "learning_patterns", "tableTo": "contexts", "columnsFrom": [ "user_corrected_context_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "preferences": { "name": "preferences", "columns": { "id": { "name": "id", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "key": { "name": "key", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "value": { "name": "value", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "type": { "name": "type", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'string'" }, "category": { "name": "category", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'general'" }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "updated_at": { "name": "updated_at", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": { "preferences_key_unique": { "name": "preferences_key_unique", "columns": [ "key" ], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} } }, "views": {}, "enums": {}, "_meta": { "schemas": {}, "tables": {}, "columns": { "\"captures\".\"content\"": "\"captures\".\"text\"" } }, "internal": { "indexes": {} } }

Latest Blog Posts

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/jgsteeler/churnflow-mcp'

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