Skip to main content
Glama
jaydb-cloud

@jaydb/mcp

by jaydb-cloud

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
JAYDB_URLNoBase URL of JayDB Cloud tenant or local JayDB instancehttp://localhost:8080
JAYDB_API_KEYNoServer-side API key (X-JayDB-API-Key)
JAYDB_NAMESPACENoDefault document namespace/bucketdefault

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
jaydb_getA

Retrieve a document by key from JayDB or JayDB Cloud

jaydb_putA

Create or update a document with optimistic concurrency control (CAS)

jaydb_deleteC

Delete a document from JayDB or JayDB Cloud

jaydb_listA

List keys and metadata by prefix in JayDB or JayDB Cloud

jaydb_healthA

Check connectivity and health of the JayDB endpoint

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct operation on the JayDB store: get, put, delete, list, and health check. There is no overlap or ambiguity in what each tool does, so an agent should reliably select the right one.

Naming Consistency5/5

All tools follow the same `jaydb_` prefix and a clear action-oriented name: get, put, delete, list, health. The naming pattern is consistent and predictable, making the tool surface easy to navigate.

Tool Count5/5

Five tools is well-scoped for a key-value document store server. Each tool covers a core operation without unnecessary bloat or missing essentials.

Completeness5/5

The tool set provides full CRUD coverage through get, put, and delete, plus listing for discovery and health for operational checking. Put explicitly handles both create and update, so no lifecycle gaps are apparent.