15 lines
472 B
TypeScript
15 lines
472 B
TypeScript
/**
|
|
* Package constants — injected at build time by esbuild define (see build.mjs)
|
|
*
|
|
* Falls back to static values when running via tsc in development.
|
|
*/
|
|
|
|
export const PKG_NAME = process.env.__MCP_PROXY_PKG_NAME__ || 'qiming-mcp-stdio-proxy';
|
|
export const PKG_VERSION = process.env.__MCP_PROXY_PKG_VERSION__ || '0.0.0-dev';
|
|
|
|
/**
|
|
* MCP protocol header names
|
|
* Defined by MCP Streamable HTTP specification
|
|
*/
|
|
export const MCP_SESSION_ID_HEADER = 'mcp-session-id';
|