webmcp.sh
A playground for WebMCP with an in-browser PGLite (Postgres) database — an agent can navigate the app, read the current context, and run gateway operations.
First seen 2026-08-17 · Last seen 2026-08-17 · Source: webmcp.com
Answer 2 · Act 2 · Transact 0 · Score: Not yet scored
Tool inspector
navigate
Navigate to a different route in the application using TanStack Router. === WEBMCP APPLICATION NAVIGATION === ABOUT THIS APP ────────────── WebMCP is a memory and knowledge management system with: • Memory blocks for persistent, always-in-context data • Entities for structured knowledge (facts, preferences, skills, etc.) • Knowledge graph for visualizing relationships • Direct SQL access for advanced queries IMPORTANT: When you navigate to a route, context-specific tools become available. For example, entity CRUD tools appear on /entities, graph tools appear on /graph, etc. AVAILABLE ROUTES ──────────────── / Landing page - WebMCP demo overview and documentation What you can do here: • View overview of WebMCP capabilities • See tool code examples • Quick navigation to demo pages /dashboard Dashboard - Memory overview with stats, charts, and quick access What you can do here: • View memory blocks and entities counts • See token usage charts by category and tier • Browse audit log of database changes • Quick create memory blocks and entities • Get an overview of the entire memory system /entities Entities page - Browse and manage all memory entities What you can do here: • View all entities in a searchable table • Filter by category (fact, preference, skill, person, project, goal) • Create, edit, and delete entities • Search entities by name or description • Sort and group entities /entities/$entityId Entity detail page - View and edit a specific entity What you can do here: • View full entity details and metadata • Edit entity properties • See related entities and relationships • Delete the entity Required params: $entityId /graph Knowledge graph - Visualize entity relationships What you can do here: • View entities as an interactive 2D or 3D graph • Explore connections between entities • Focus on specific nodes and highlight paths • Run visual effects like camera tours and particle bursts • Analyze graph patterns and statistics • Execute SQL queries directly /memor…
Input schema
| Property | Type | Required | Description |
|---|---|---|---|
to |
string | yes | The route path to navigate to (e.g., "/entities", "/graph") |
params |
object | no | Route parameters (e.g., { "entityId": "uuid-here" }) for dynamic routes |
search |
object | no | URL search/query parameters (e.g., { "filter": "skills", "page": "2" }) |
hash |
string | no | URL hash fragment (e.g., "section-1") |
replace |
boolean | no | If true, replaces current history entry instead of pushing new one |
Raw JSON schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"minLength": 1,
"description": "The route path to navigate to (e.g., \"/entities\", \"/graph\")"
},
"params": {
"type": "object",
"additionalProperties": {},
"description": "Route parameters (e.g., { \"entityId\": \"uuid-here\" }) for dynamic routes"
},
"search": {
"type": "object",
"additionalProperties": {},
"description": "URL search/query parameters (e.g., { \"filter\": \"skills\", \"page\": \"2\" })"
},
"hash": {
"type": "string",
"description": "URL hash fragment (e.g., \"section-1\")"
},
"replace": {
"type": "boolean",
"default": false,
"description": "If true, replaces current history entry instead of pushing new one"
}
},
"required": [
"to"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
Similar websites
persona-chat.dev
Persona is an open-source, themeable AI chat widget you can add to any website in minutes. SSE streaming, agent loops, tool use, and style isolation: zero frame…
demos.telerik.com
Explore and test a wide range of Telerik UI for Blazor examples, demos, and sample applications.
bandarra.me
WebMCP-enabled text editor with imperative tools for document I/O, workspace CRUD, on-device translation, and sub-agent (planner / researcher / writer / reviewe…
admintoolkit.io
admintoolkit.io gives admins browser-based DNS, mail authentication, TLS, HTTP, public IP, CIDR, and EDID checks with local parsing and explicit live lookups.