Custom MCP Integration Guide

Integrate AppHighway tools into any MCP-compatible client or custom application

Overview

AppHighway supports the standard Model Context Protocol (MCP). Any client that implements MCP can connect to AppHighway tools.

MCP Endpoint

Use this endpoint to connect your MCP client:

text
https://apphighway.com/api/mcp/{tool-slug}

Tool Discovery

Query the registry endpoint to discover all available tools:

bash
curl https://apphighway.com/api/mcp/registry

Transport Options

stdio – For local MCP servers using npx

json
{
  "mcpServers": {
    "apphighway-structify": {
      "command": "npx",
      "args": ["-y", "@apphighway/mcp-bridge", "--endpoint", "https://apphighway.com/api/mcp/structify"],
      "env": {
        "APPHIGHWAY_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

SSE – For remote connections via Server-Sent Events

json
{
  "mcpServers": {
    "apphighway-structify": {
      "url": "https://apphighway.com/api/mcp/structify",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Authentication

All requests require a valid API token passed via the Authorization header or APPHIGHWAY_API_KEY environment variable.

MCP Setup Guide – AppHighway