Skip to main content
Glama

Targetprocess MCP Server

#!/bin/bash # MCP Server startup script for Targetprocess # Get the directory where this script is located SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # Check if build exists if [ ! -f "$SCRIPT_DIR/build/index.js" ]; then echo "Error: build/index.js not found. Running build..." >&2 cd "$SCRIPT_DIR" && npm run build fi # Source the .env file if it exists if [ -f "$SCRIPT_DIR/.env" ]; then set -a # automatically export all variables source "$SCRIPT_DIR/.env" set +a fi # Force strict mode for MCP export MCP_STRICT_MODE=true # Run the MCP server with stdio transport exec node "$SCRIPT_DIR/build/index.js" --stdio

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aaronsb/apptio-target-process-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server