|
| 1 | +{ |
| 2 | + "name": "tinydb", |
| 3 | + "display_name": "TinyDB MCP Server", |
| 4 | + "description": "MCP server that uses TinyDB to store and retrieve data. Provides a simple NoSQL database interface with operations for creating tables, inserting documents, querying, updating, and deleting records.", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/pathintegral-institute/mcp.science" |
| 8 | + }, |
| 9 | + "homepage": "https://github.com/pathintegral-institute/mcp.science/tree/main/servers/tinydb", |
| 10 | + "author": { |
| 11 | + "name": "Path Integral Institute" |
| 12 | + }, |
| 13 | + "license": "MIT", |
| 14 | + "categories": ["Databases"], |
| 15 | + "tags": [ |
| 16 | + "database", |
| 17 | + "nosql" |
| 18 | + ], |
| 19 | + "arguments": { |
| 20 | + "DB_FILE": { |
| 21 | + "description": "Path to the TinyDB database file (optional, defaults to database.json)", |
| 22 | + "required": false, |
| 23 | + "example": "/path/to/custom_database.json" |
| 24 | + } |
| 25 | + }, |
| 26 | + "tools": [ |
| 27 | + { |
| 28 | + "name": "create_table", |
| 29 | + "description": "Create a new table in the database" |
| 30 | + }, |
| 31 | + { |
| 32 | + "name": "insert_document", |
| 33 | + "description": "Insert a document into a table" |
| 34 | + }, |
| 35 | + { |
| 36 | + "name": "query_documents", |
| 37 | + "description": "Query documents from a table with optional filters" |
| 38 | + }, |
| 39 | + { |
| 40 | + "name": "update_documents", |
| 41 | + "description": "Update documents in a table" |
| 42 | + }, |
| 43 | + { |
| 44 | + "name": "delete_documents", |
| 45 | + "description": "Delete documents from a table" |
| 46 | + }, |
| 47 | + { |
| 48 | + "name": "purge_table", |
| 49 | + "description": "Remove all documents from a table" |
| 50 | + }, |
| 51 | + { |
| 52 | + "name": "drop_table", |
| 53 | + "description": "Drop a table from the database" |
| 54 | + } |
| 55 | + ], |
| 56 | + "installations": { |
| 57 | + "python": { |
| 58 | + "type": "python", |
| 59 | + "command": "uvx", |
| 60 | + "args": ["mcp-science", "tinydb"], |
| 61 | + "description": "Install from GitHub using uvx", |
| 62 | + "recommended": true |
| 63 | + } |
| 64 | + }, |
| 65 | + "examples": [ |
| 66 | + { |
| 67 | + "title": "Create and populate a users table", |
| 68 | + "description": "Create a users table and insert user records", |
| 69 | + "prompt": "Create a users table and insert a user with name 'John Doe', email 'john@example.com', and age 30" |
| 70 | + }, |
| 71 | + { |
| 72 | + "title": "Query database records", |
| 73 | + "description": "Search for records matching specific criteria", |
| 74 | + "prompt": "Find all users with age greater than 25" |
| 75 | + }, |
| 76 | + { |
| 77 | + "title": "Update existing records", |
| 78 | + "description": "Update user information in the database", |
| 79 | + "prompt": "Update the email address for user John Doe to 'john.doe@newdomain.com'" |
| 80 | + }, |
| 81 | + { |
| 82 | + "title": "Database maintenance", |
| 83 | + "description": "Clean up and manage database tables", |
| 84 | + "prompt": "Remove all users older than 65 and then purge the inactive_users table" |
| 85 | + } |
| 86 | + ], |
| 87 | + "is_official": true |
| 88 | +} |
0 commit comments