JSPM

  • Created
  • Published
  • Downloads 289
  • Score
    100M100P100Q76707F
  • License MIT

An MCP server for the Local Falcon API.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@local-falcon/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Local Falcon MCP Server

    An MCP (Model Context Protocol) server for the Local Falcon API, implemented in TypeScript, using the official MCP SDK and Bun as the runtime. This server exposes Local Falcon reporting capabilities as MCP tools, enabling integration with agentic AI systems and workflows.


    Getting Started

    Prerequisites

    • Bun (ensure it's installed and available in your PATH)
    • A Local Falcon API key (get one here)

    Installation

    1. Clone this repository:

      git clone <this-repo-url>
      cd local-falcon-mcp
    2. Install dependencies with Bun:

      bun install
    3. Copy .env.example to .env.local and add your Local Falcon API key:

      LOCALFALCON_API_KEY=your_api_key_here

    Usage

    Start the MCP Server

    bun run index.ts

    The server will start in stdio mode, ready to communicate via the MCP protocol.


    Development

    • TypeScript configuration: see tsconfig.json

    • Build (necessary to run in local MCP host applications):

      bun run build
    • Run MCP Inspector:

      bun run inspector

    License

    MIT


    Acknowledgments