MCP App Test Value Picker Server

MCP App Test Value Picker Server

A debug tool for platform developers to verify that their MCP App hosts correctly implement protocol specifications like context injection and message sending. It provides a blind selection test to ensure seamless end-to-end communication between the UI, host, and model.

Category
Visit Server

README

MCP App Test Value Picker Server

A debug tool for platform developers building MCP Apps hosts. Use this MCP server to verify that your platform correctly implements the ui/update-model-context and ui/message protocols defined in the MCP Apps Specification.

Why Use This?

When building an MCP Apps host, you need to verify that:

  1. Context injection works — Values selected in the UI iframe reach the AI model via ui/update-model-context
  2. Message sending works — The UI can trigger follow-up messages via ui/message
  3. The complete flow works — View → Host → Model communication is functioning end-to-end

This tool provides a simple "blind selection" test: the user picks a value in the UI, and the AI must correctly identify what was selected. If the AI knows the value, your platform is working. If not, something is broken in your ui/update-model-context implementation.


Installation

Via npm (Recommended)

Install from npmjs.com/package/mcp-server-value-picker:

npm install -g mcp-server-value-picker

Run the server:

# Auto-detects transport mode
mcp-server-value-picker

# Force STDIO mode (for Claude Desktop)
mcp-server-value-picker --stdio

# Force HTTP mode
mcp-server-value-picker --http

Or run directly with npx (no install required):

npx mcp-server-value-picker

Local Development

For modifying the example or contributing:

npm install
npm run build
npm start

Default HTTP endpoint: http://localhost:3456/mcp


How the Test Works

  1. Connect this MCP server to your platform
  2. The AI calls the pick_value tool, which displays 10 selectable values in the UI
  3. User clicks a value card
  4. The UI sends ui/update-model-context with the selection details
  5. The UI sends ui/message asking "I have picked a value, can you tell me what it is?"
  6. If your platform works: The AI responds with the correct value
  7. If something is broken: The AI won't know what was selected

Expected Model Response

The tool description explicitly tells the AI this is a debug test. A correct response looks like:

"You selected Alpha Protocol (id: alpha)."

If the AI elaborates extensively on the value meanings, the test still passed (context injection worked), but the AI didn't follow the debug instructions.


What This Tests

Platform Requirements Verified

Your Platform Must... Protocol Message Verified By
Inject UI context into model ui/update-model-context AI knows selected value
Forward UI messages to conversation ui/message AI receives follow-up prompt
Deliver tool results to UI ui/notifications/tool-result UI renders value cards
Pass tool arguments to UI ui/notifications/tool-input UI receives empty args
Handle teardown gracefully ui/resource-teardown No errors on close

Full Specification Coverage

Full Specification

Feature Spec Section
text/html;profile=mcp-app MIME type UI Resource Format
ui:// URI scheme UI Resource Format
_meta.ui.resourceUri linkage Resource Discovery
ui/initialize / ui/notifications/initialized Lifecycle
ui/notifications/tool-input Data Passing
ui/notifications/tool-result Data Passing
ui/notifications/tool-cancelled Notifications
ui/resource-teardown Cleanup
ui/update-model-context Requests
ui/message Requests
ui/notifications/host-context-changed Notifications
HostContext.theme Theming
HostContext.styles.variables Theming
HostContext.styles.css.fonts Custom Fonts
HostContext.safeAreaInsets Container Dimensions
content + structuredContent dual model Data Passing

Files

File Purpose
server.ts MCP server with pick_value tool and UI resource
src/mcp-app.ts View implementation (App class, handlers, context)
src/mcp-app.css View styling with CSS variable fallbacks
mcp-app.html HTML template with color-scheme meta tag
main.ts Entry point with STDIO/HTTP transport selection

Implementation Details

<details> <summary>Server-side implementation</summary>

Tool Registration with UI Metadata

registerAppTool(server, "pick_value", {
  title: "Pick a Value",
  description: "DEBUG/TEST TOOL: Tests MCP Apps communication between UI and model...",
  inputSchema: {},
  _meta: { ui: { resourceUri: "ui://pick-value/mcp-app.html" } },
}, async () => { /* handler */ });

Dual Content Model

return {
  content: [{
    type: "text",
    text: `[MCP Apps Test] This is a debug tool...`,
  }],
  structuredContent: {
    values: VALUES,  // UI-only, not sent to model
  },
};

</details>

<details> <summary>View-side implementation</summary>

Context Update

await app.updateModelContext({
  content: [{
    type: "text",
    text: `The user selected "${value.label}" (id: ${value.id}).`,
  }],
});

Message Sending

await app.sendMessage({
  role: "user",
  content: [{
    type: "text",
    text: `I have picked a value, can you tell me what it is?`,
  }],
});

Host Context Handling

app.onhostcontextchanged = (ctx) => {
  if (ctx.theme) applyDocumentTheme(ctx.theme);
  if (ctx.styles?.variables) applyHostStyleVariables(ctx.styles.variables);
  if (ctx.styles?.css?.fonts) applyHostFonts(ctx.styles.css.fonts);
  if (ctx.safeAreaInsets) { /* apply padding */ }
};

</details>

By Sebastian Whincop - https://github.com/MacJedi42

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured