Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/$2?q=database&page=1&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=database

Returns an array of strings in format "username" or "username/projectName"

Found 5451 results for "database"(397ms)

MCPindex.ts1 match

@c15rUpdated 1 hour ago
115 </div>
116 <div class="border rounded-lg p-4">
117 <h3 class="font-semibold text-green-600 mb-2">🗄️ SQLite Database</h3>
118 <ul class="text-sm text-gray-600 space-y-1">
119 <li>• sqlite_execute</li>

MCPChatInterface.tsx1 match

@c15rUpdated 1 hour ago
177 "List all available tools",
178 "Store some data in blob storage",
179 "Query the SQLite database",
180 "Send a test email",
181 "Read a project file",

MCPREADME.md1 match

@c15rUpdated 1 hour ago
6
7- **Blob Storage**: Read, write, list, and delete blob data
8- **SQLite Database**: Execute queries and manage database operations
9- **Email**: Send emails through Val Town's email service
10- **OpenAI Integration**: Access OpenAI API through Val Town's service

MCPresources.ts3 matches

@c15rUpdated 1 hour ago
45 }
46
47 // Add database schema as a resource
48 resources.push({
49 uri: "sqlite://schema",
50 name: "SQLite Schema",
51 description: "Database schema information",
52 mimeType: "application/json"
53 });
146 };
147 } catch (error) {
148 throw new MCPException(MCP_ERRORS.INTERNAL_ERROR, `Error reading database schema: ${error.message}`);
149 }
150 }

MCPREADME.md2 matches

@c15rUpdated 1 hour ago
34 - `blob_delete` - Delete blob
35
362. **SQLite Database**
37 - `sqlite_execute` - Execute SQL queries
38
54- `blob://[key]` - Blob storage items
55- `file://[path]` - Project files
56- `sqlite://schema` - Database schema
57- `env://info` - Environment variable info

sqliteExplorerApp2README.md1 match

@ryiUpdated 2 hours ago
30- [ ] add triggers to sidebar
31- [ ] add upload from SQL, CSV and JSON
32- [ ] add ability to connect to a non-val town Turso database
33- [x] fix wonky sidebar separator height problem (thanks to @stevekrouse)
34- [x] make result tables scrollable

dateme-2README.md2 matches

@stevekrouseUpdated 3 hours ago
4
5The directory is a simple
6database of Date Me Docs. Date Me Docs are long-form, earnest dating profiles for romantic partners.
7[Learn more here](https://dateme.directory/faq).
8
9## Todos
10
11- [ ] Make the SQLite database forkable and build a widget/workflow for that, ie fix @stevekrouse/dateme_sqlite
12- [ ] Require an email (that isn't shared publicly)
13 - [ ] Verify the email address with a "magic link"

dateme-2join2 matches

@stevekrouseUpdated 3 hours ago
345 }
346 } catch (e) {
347 console.error("Database error:", e);
348 await email({
349 subject: "Date Me Doc Submit Error: " + body["Name"],
383 );
384};
385// Database migration to add UserEmail column if it doesn't exist
386async function ensureUserEmailColumn() {
387 try {

datemeREADME.md2 matches

@omikronUpdated 3 hours ago
4
5The directory is a simple
6database of Date Me Docs. Date Me Docs are long-form, earnest dating profiles for romantic partners.
7[Learn more here](https://dateme.directory/faq).
8
9## Todos
10
11- [ ] Make the SQLite database forkable and build a widget/workflow for that, ie fix @stevekrouse/dateme_sqlite
12- [ ] Require an email (that isn't shared publicly)
13 - [ ] Verify the email address with a "magic link"

tourguideindex.ts2 matches

@neverstewUpdated 6 hours ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { runMigrations } from "./database/migrations.ts";
3import itineraryRoutes from "./routes/itinerary.ts";
4import staticRoutes from "./routes/static.ts";
11});
12
13// Initialize database
14await runMigrations();
15

bookmarksDatabase

@s3thiUpdated 3 months ago

sqLiteDatabase1 file match

@ideofunkUpdated 6 months ago