About Bh Openapi MCP
Bh Openapi MCP is an MCP server published by mholyjr in the Developer Tools category: mCP server: Bh Openapi MCP. It has been installed 0 times through Conduid.
The repository has 1 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx bh-openapi-mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Bh Openapi MCP
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
bh-openapi-mcp
MCP server to get openapi schemas
Overview
This project provides a Model Context Protocol (MCP) server for OpenAPI-based schemas. It enables tools and resources to be exposed via a standardized interface, supporting schema discovery and introspection.
Features
- MCP server implementation using
@modelcontextprotocol/sdk - Tool for retrieving YAML schema definitions by name and project from a private GitHub repository
- TypeScript-based codebase
- Fetching schemas directly from
@behavio/behavio-api-docsrepository to keep the data up-to-date
Project Structure
src/- Source code for the MCP server and helpersbuild/- Compiled outputpackage.json- Project configuration and dependencies
Getting Started
VS Code Settings
"mcp": {
"servers": {
"bh-openapi-mcp": {
"type": "stdio",
"command": "npx",
"args": ["tsx", "[ABSOLUTE_PATH]/src/index.ts"],
"env": {
"GITHUB_TOKEN": "YOUR_GH_TOKEN"
}
}
}
},
Prerequisites
- Node.js (v16+ recommended)
- pnpm or npm
Install dependencies
pnpm install
# or
npm install
Build the project
pnpm build
# or
npm run build
Start the server
pnpm start
# or
npm start
Usage
The server exposes a tool called get-schema-info that allows you to retrieve the YAML definition of a schema by name. This is useful for schema discovery and documentation purposes.
Development
- TypeScript is used for type safety.
README mirrored from the source repository 3 months ago. The original is authoritative.