UNPKG

@ryancardin/noaa-tides-currents-mcp-server

Version:

MCP Server that interfaces with NOAA Tides and Currents API using FastMCP

10 lines (9 loc) 313 B
#!/usr/bin/env node import { createServer, startServer } from './server/config.js'; import { registerAllTools } from './tools/index.js'; // Create and configure the MCP server const server = createServer(); // Register all tools const services = registerAllTools(server); // Start the server startServer(server);