feat(fake-llm-server): add initial setup for fake LLM server with TypeScript and Express
- Created package.json for dependencies and scripts - Added tsconfig.json for TypeScript configuration - Implemented fake stdio MCP server with basic calculator and environment variable printing tools - Added shell script to run the fake stdio MCP server - Updated root tsconfig.json for project references and path mapping
This commit is contained in:
12
backups/backup-20251218-161645/testing/run-fake-stdio-mcp-server.sh
Executable file
12
backups/backup-20251218-161645/testing/run-fake-stdio-mcp-server.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
# Launch the fake stdio MCP server with Node.
|
||||
# Usage: testing/run-fake-stdio-mcp-server.sh
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
NODE_BIN="node"
|
||||
|
||||
exec "$NODE_BIN" "$SCRIPT_DIR/fake-stdio-mcp-server.mjs"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user