@jambonz/mcp-schema-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@jambonz/mcp-schema-serverget the full developer guide and schema index"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@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.
Related MCP server: openapi-mcp-proxy
Tools
Tool | Description |
| Returns the full developer guide and schema index. Call this first before writing any jambonz code. |
| Fetch the JSON Schema for any verb, component, or callback (e.g. |
Usage
stdio transport
npx @jambonz/mcp-schema-serverHTTP transport
npx @jambonz/mcp-schema-server --http --port 3000Configuration
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/mcpTo 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 3000Release 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 --tagsLinks
@jambonz/schema -- schema package this server exposes
jambonz.org -- platform documentation
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceA MCP server that exposes OpenAPI schema information to LLMs like Claude. This server allows an LLM to explore and understand large OpenAPI schemas through a set of specialized tools, without needing to load the whole schema into the contextLast updated16050MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides tools for exploring large OpenAPI schemas without loading entire schemas into LLM context. Perfect for discovering and analyzing endpoints, data models, and API structure efficiently.Last updated914MIT
- FlicenseAqualityDmaintenanceProvides AI assistants with real-time access to the AGNO framework documentation by enabling them to browse, search, and fetch documentation pages. This server allows users to query information about AGNO's Agents, Teams, and Workflows directly through MCP-compatible clients.Last updated15
- AlicenseAqualityDmaintenanceAn MCP server that serves documentation and enables AI-powered search, Q\&A, and document analysis for developer tools and guides.Last updated54MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jambonz/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server