I've been constantly deploying major updates to Snappy’s MCP tool, now featuring 98 tools covering virtually the entire Xano API surface!
Here’s an overview of the current Snappy MCP tools:
Core Tools (4)
1. xano_auth_me - Get current auth status
2. whoami - Get current user info
3. xano_list_instances - List available Xano instances
4. xano_get_instance_details - Get instance configuration
Database Tools (5)
5. xano_list_databases - List all workspaces/databases
6. xano_get_workspace_details - Get workspace information
7. xano_list_workspace_branches - List workspace branches
8. xano_export_workspace - Export workspace configuration
9. xano_export_workspace_schema - Export workspace schema only
Table Management Tools (13)
10. xano_list_tables - List all tables in workspace
11. xano_get_table_details - Get table metadata
12. xano_get_table_schema - Get table field definitions
13. xano_create_table - Create new table
14. xano_update_table - Update table properties
15. xano_delete_table - Delete a table
16. xano_get_table_with_script - Get table XanoScript definition
17. xano_update_table_with_script - Update table via XanoScript
18. xano_truncate_table - Remove all records from table
19. xano_get_specific_schema_field - Get single field details
20. xano_replace_entire_schema - Replace complete table schema
21. xano_update_table_autocomplete - Configure autocomplete
22. xano_update_table_meta - Update table metadata
Field Management Tools - Expanded (31 field types)
23. xano_add_field_to_schema - Add field to table (supports all types below)
24. xano_rename_schema_field - Rename existing field
25. xano_delete_field - Remove field from table
26. xano_create_table_reference_field - Create foreign key field
- integer reference
- uuid reference
27. xano_create_basic_field - Create simple field types:
- text - Text field with max_length, min_length validation
- int - Integer field with min, max validation
- bool - Boolean field (true/false)
- timestamp - Timestamp field with default_now option
- date - Date field with default_today option
- email - Email field with unique validation
- json - JSON data field
28. xano_create_media_field - Create file/image fields:
- attachment - General file attachment field
- image - Image field with dimension constraints
- audio - Audio file field
- video - Video file field
29. xano_create_advanced_field - Create complex field types:
- enum - Enumeration field with predefined values
- password - Password field with complexity requirements
- decimal - Decimal field with precision and scale
- uuid - UUID field with auto_generate option
- object - JSON object field with schema validation
- vector - Vector field for AI embeddings (dimensions)
- geo_point - Geographic point (lat/lon)
- geo_polygon - Geographic polygon shape
- geo_linestring - Geographic line
- geo_multipoint - Multiple geographic points
- geo_multilinestring - Multiple geographic lines
- geo_multipolygon - Multiple geographic polygons
30. xano_manage_table_indexes - Manage table indexes:
- btree index
- unique index
- btree|unique combined index
31. xano_manage_search_indexes - Manage search indexes
Data Operations Tools (11)
32. xano_browse_table_content - View table records
33. xano_get_table_record - Get single record
34. xano_create_table_record - Insert new record
35. xano_update_table_record - Update existing record
36. xano_delete_table_record - Delete single record
37. xano_bulk_create_records - Insert multiple records
38. xano_bulk_update_records - Update multiple records
39. xano_search_table_content - Search table data
40. xano_bulk_delete_records - Delete multiple records
41. xano_search_and_patch_records - Search and update
42. xano_search_and_delete_records - Search and delete
API Management Tools (14)
43. xano_browse_api_groups - List API groups
44. xano_create_api_group - Create new API group
45. xano_get_api_group - Get API group details
46. xano_update_api_group - Update API group
47. xano_delete_api_group - Delete API group
48. xano_browse_apis_in_group - List APIs in group
49. xano_get_api - Get API details
50. xano_delete_api - Delete an API
51. xano_get_api_with_logic - Get API with XanoScript
52. xano_update_api_with_logic - Update API XanoScript
53. xano_publish_api - Publish API to live
54. xano_list_apis_with_logic - List APIs with logic
55. xano_get_api_openapi - Get OpenAPI spec for API
56. xano_get_apigroup_openapi - Get OpenAPI for group
Function Tools (4)
57. xano_list_functions - List all functions
58. xano_create_function - Create new function
59. xano_get_function_details - Get function details
60. xano_create_api_with_logic - Create API endpoint with XanoScript
Task Tools (6)
61. xano_list_tasks - List background tasks
62. xano_create_task - Create new task
63. xano_get_task_details - Get task details
64. xano_update_task - Update task logic
65. xano_delete_task - Delete a task
66. xano_publish_task - Publish task to live
67. xano_activate_task - Activate/deactivate task
Administrative Tools (13)
68. xano_list_datasources - List external datasources
69. xano_create_datasource - Create datasource
70. xano_update_datasource - Update datasource
71. xano_delete_datasource - Delete datasource
72. xano_browse_logs - View system logs
73. xano_search_logs - Search logs
74. xano_set_security - Set resource security
75. xano_list_files - List uploaded files
76. xano_upload_file - Upload new file
77. xano_delete_file - Delete a file
78. xano_get_file_info - Get file details
79. xano_browse_request_history - View API requests
80. xano_search_request_history - Search requests
Workspace Management Tools (5)
81. xano_delete_workspace_branch - Delete branch
82. xano_import_schema - Import schema file
83. xano_import_workspace - Import full workspace
84. xano_get_realtime - Get realtime config
85. xano_update_realtime - Update realtime settings
Index Tools (2)
86. xano_create_btree_index - Create B-tree index
87. xano_create_search_index - Create search index
Template Tools (10)
88. stripe_webhook_template - Stripe webhook handler template
89. stripe_checkout_template - Stripe checkout template
90. stripe_subscription_template - Stripe subscription template
91. create_auth_system_template - Complete auth system template
92. create_crud_endpoints_template - CRUD operations template
93. create_external_api_template - External API integration template
94. create_dalle_image_generator - DALL-E image generation template
95. create_vision_image_analyzer - GPT Vision analysis template
96. create_chatbot_image_handler - Chatbot with images template
97. xano_get_started - Getting started guide
98. xano_syntax_reference - XanoScript syntax reference