@jambonz/mcp-schema-server
This server exposes jambonz verb schemas and developer documentation as MCP tools, enabling AI agents to query verb definitions, component types, callback payloads, and the full developer guide without needing local access to the schema files.
README
@jambonz/mcp-schema-server
MCP server that provides jambonz verb schemas and documentation to AI agents via the Model Context Protocol.
How It Works
This server exposes the schemas and developer guide from the @jambonz/schema package as MCP tools. AI coding agents can query verb definitions, component types, callback payloads, and the full developer guide without needing local access to the schema files.
Tools
| Tool | Description |
|---|---|
jambonz_developer_toolkit |
Returns the full developer guide and schema index. Call this first before writing any jambonz code. |
get_jambonz_schema |
Fetch the JSON Schema for any verb, component, or callback (e.g. verb:say, component:synthesizer, callback:gather, guide:session-commands). |
Usage
stdio transport
npx @jambonz/mcp-schema-server
HTTP transport
npx @jambonz/mcp-schema-server --http --port 3000
Configuration
Claude Code CLI
Add to .mcp.json in your project root:
{
"mcpServers": {
"jambonz": {
"command": "npx",
"args": ["-y", "@jambonz/mcp-schema-server"]
}
}
}
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"jambonz": {
"command": "npx",
"args": ["-y", "@jambonz/mcp-schema-server"]
}
}
}
VS Code
Add to .vscode/mcp.json:
{
"servers": {
"jambonz": {
"command": "npx",
"args": ["-y", "@jambonz/mcp-schema-server"]
}
}
}
Remote Hosted Server
A hosted instance is available at:
https://mcp-server.jambonz.app/mcp
To use the remote server in .mcp.json:
{
"mcpServers": {
"jambonz": {
"type": "url",
"url": "https://mcp-server.jambonz.app/mcp"
}
}
}
Development
Local Testing
npm install
npm run build
node dist/index.js # stdio transport
node dist/index.js --http # HTTP on port 3000
Release Process
Publishing is handled by GitHub Actions on v* tags. To release:
# After updating dependencies in package.json
npm install
git add -A && git commit -m "chore: update dependencies"
# Bump version and create tag
npm version patch # or minor/major
# Push commit and tag to trigger publish workflow
git push origin main --tags
Links
- @jambonz/schema -- schema package this server exposes
- jambonz.org -- platform documentation
- GitHub
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.