open-mcp-apps
v0.1.0
Published
A small Node.js SDK skeleton for working with open MCP apps.
Maintainers
Readme
open-mcp-apps
A small Node.js SDK skeleton for working with open MCP apps.
This package is intentionally lightweight: it includes a generic HTTP request primitive and a few convenience methods that demonstrate typical SDK call shapes against an "open apps" API surface.
Install
npm install open-mcp-appsUsage
const { createMcpAppsClient } = require('open-mcp-apps');
const client = createMcpAppsClient({
baseUrl: 'https://api.example.com',
});
async function main() {
const apps = await client.listApps({});
console.log(apps);
}
main().catch((err) => {
console.error(err);
process.exitCode = 1;
});License
MIT
