@sperax/mcp-proxy-core
v0.2.2
Published
Shared stdio-to-HTTP proxy runtime for SperaxOS MCP servers.
Maintainers
Readme
@sperax/mcp-proxy-core
Install
npm install @sperax/mcp-proxy-coreShared runtime for the @sperax/mcp-* stdio proxies. Not used directly — each SperaxOS MCP server (@sperax/mcp-market, @sperax/mcp-onchain, …) is a one-line wrapper around runProxy.
A proxy holds no secrets. It forwards tools/list and tools/call over stdio to the hosted SperaxOS MCP gateway, which runs the real tool executors server-side.
#!/usr/bin/env node
import { runProxy } from '@sperax/mcp-proxy-core';
runProxy({ group: 'market', title: 'Sperax Market Data' });Configuration
| Env var | Default | Purpose |
| --- | --- | --- |
| SPERAX_MCP_URL | https://chat.sperax.io/webapi/mcp | Upstream gateway base URL. The /<group> segment is appended automatically. Override for self-hosting or staging. |
See docs/mcp-gateway.md and docs/mcp-distribution.md.
License
mcp-proxy-core is released under the Apache-2.0 license.
