ai-agent-scratchpad
Server Details
Cloudflare Workers MCP server: ai-agent-scratchpad
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lazymac2x/ai-agent-scratchpad-api
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.2/5 across 6 of 6 tools scored.
Each tool has a distinct purpose: save checkpoint, delete key, compute diff, list keys, read value, write value. No overlapping functionality; agents can easily distinguish which tool to use.
All tools follow a consistent 'scratchpad_' prefix with a clear verb (checkpoint, delete, diff, list, read, write), making the naming pattern predictable and easy to understand.
With 6 tools, the server is well-scoped for a scratchpad utility. It provides essential CRUD operations plus diff/checkpoint for state management, without unnecessary bloat.
The tool set covers all key operations: create/update (write), read, delete, list, plus snapshot (checkpoint) and comparison (diff). No dead ends; agents can fully manage a scratchpad session.
Available Tools
6 toolsscratchpad_checkpointInspect
현재 세션 상태의 스냅샷을 체크포인트 태그로 저장합니다. keys를 지정하면 해당 키만 스냅샷.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | Yes | 체크포인트 태그 (예: "step-3", "before-refactor") | |
| keys | No | 스냅샷할 키 목록 (선택사항, 미지정 시 전체) | |
| session_id | Yes | 세션 식별자 |
scratchpad_deleteInspect
세션의 특정 키를 삭제합니다.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | 삭제할 키 | |
| session_id | Yes | 세션 식별자 |
scratchpad_diffInspect
현재 키 값과 체크포인트 값의 diff를 반환합니다. 또는 두 임의 값의 diff 비교.
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | 비교할 키 (체크포인트 비교 시 필수) | |
| value_a | No | 직접 비교할 첫 번째 값 (선택사항) | |
| value_b | No | 직접 비교할 두 번째 값 (선택사항) | |
| session_id | Yes | 세션 식별자 | |
| checkpoint_tag | No | 비교 기준 체크포인트 태그 |
scratchpad_listInspect
세션의 모든 키 목록을 반환합니다. 선택적 prefix 필터링 지원.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 최대 반환 수 (기본 100, 최대 500) | |
| prefix | No | 키 prefix 필터 (선택사항) | |
| session_id | Yes | 세션 식별자 |
scratchpad_readInspect
세션의 특정 키 값을 조회합니다.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | 조회할 키 | |
| session_id | Yes | 세션 식별자 |
scratchpad_writeInspect
세션에 키-값을 저장합니다. value는 문자열 또는 JSON 직렬화 가능한 값.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | 스크래치패드 키 | |
| ttl | No | 만료 시간(초), 선택사항 | |
| value | Yes | 저장할 값 (문자열 또는 객체) | |
| session_id | Yes | 세션 식별자 (에이전트 실행 단위) |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- -license-quality-maintenanceA production-ready MCP server for AI agents, providing deep web research and RAG capabilities via Cloudflare Workers.Last updated
- Flicense-qualityCmaintenanceDeployable MCP server on Cloudflare Workers without authentication, enabling AI agents to use custom tools via SSE endpoint. Supports connection to Cloudflare AI Playground and local clients like Claude Desktop.Last updated
- Flicense-qualityCmaintenanceA remote MCP server deployed on Cloudflare Workers without authentication, enabling connection to Cloudflare AI Playground or local MCP clients.Last updated
- Flicense-qualityCmaintenanceDeploy a remote MCP server on Cloudflare Workers without authentication, and connect it to AI Playground or Claude Desktop for tool usage.Last updated52