@ryancardin/noaa-tides-currents-mcp-server
Version:
MCP Server that interfaces with NOAA Tides and Currents API using FastMCP
13 lines (10 loc) • 351 B
text/typescript
import { FastMCP } from 'fastmcp';
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);