New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

windsock-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windsock-mcp

Windsock aircraft intelligence for AI agents: stdio bridge and client helper for the Windsock MCP server (valuations, FAA registry, cost of ownership, market data, reports, logbooks).

pipPyPI
Version
0.1.1
Weekly downloads
760
Maintainers
1
Created

windsock-mcp

Windsock aircraft intelligence for AI agents, from Python.

Windsock exposes 38 tools over the Model Context Protocol at https://windsock.ai/mcp: aircraft valuations, FAA registry lookups, cost of ownership, comparable aircraft, fleet search, ADs and STCs, market metrics with forecasts, verified value reports, pre-buy diligence checklists, logbook search and a watchlist. This package gives you a client helper and a stdio bridge.

pip install windsock-mcp
export WINDSOCK_API_KEY=wsk_…   # Integrations → Agents & SDKs in your Windsock account

Call tools directly

import asyncio
from windsock_mcp import connect

async def main():
    async with connect() as session:
        tools = await session.list_tools()
        print([t.name for t in tools.tools])
        result = await session.call_tool("lookup_aircraft", {"registration": "N12345"})
        print(result.content[0].text)

asyncio.run(main())

Use as a stdio MCP server

{
  "mcpServers": {
    "windsock": {
      "command": "windsock-mcp",
      "env": { "WINDSOCK_API_KEY": "wsk_…" }
    }
  }
}

Docs

MIT © Windsock

mcp-name: ai.windsock/windsock

Keywords

agents

FAQs

Related posts