1.0.0 • Published 4 months ago

kalshi-tools-mcp v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Kalshi Tools MCP

An MCP (Model Context Protocol) server providing tools for interacting with Kalshi prediction markets API.

Installation

Global Installation (Recommended)

# Using npm
npm install -g kalshi-tools-mcp

# Using pnpm
pnpm add -g kalshi-tools-mcp

# Using yarn
yarn global add kalshi-tools-mcp

Local Installation

# Using npm
npm install kalshi-tools-mcp

# Using pnpm
pnpm add kalshi-tools-mcp

# Using yarn
yarn add kalshi-tools-mcp

Usage

Command Line

If installed globally, you can run:

kalshi-tools-mcp

If installed locally:

npx kalshi-tools-mcp
# or
node node_modules/.bin/kalshi-tools-mcp

With LLM Clients Supporting MCP

This MCP server is designed to be used with LLM clients that support the Model Context Protocol. When you start the server, it will wait for connections from an MCP client.

Example clients include:

  • Claude Desktop
  • Other MCP-compatible applications

Available Tools

Currently, this package provides:

  • hello-world: A simple test tool that returns a greeting message

Development

Prerequisites

  • Node.js v16+
  • npm, pnpm, or yarn

Setup

# Clone the repository
git clone https://github.com/eric-fern/kalshi-tools-mcp.git
cd kalshi-tools-mcp

# Install dependencies
npm install
# or
pnpm install
# or
yarn install

# Build the project
npm run build

# Start the MCP server
npm start

License

MIT