UNPKG

@vibeworks/barkme-mcp-server

Version:

A Model Context Protocol (MCP) server that provides iOS push notifications through the Bark service

7 lines (6 loc) 259 B
#!/usr/bin/env node export declare const VERSION = "0.1.1"; import { type CallToolResult, type Tool } from "@modelcontextprotocol/sdk/types.js"; export type ToolRegistration<T> = Tool & { handler: (args: T) => CallToolResult | Promise<CallToolResult>; };