We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/danield137/mcp-workflowy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•381 B
#!/usr/bin/env node
import { FastMCP } from "fastmcp";
import dotenv from "dotenv";
import { registerTools } from "./tools/index.js";
import { z } from "zod"; // Or any validation library that supports Standard Schema
const server = new FastMCP({
name: "workflowy",
version: "0.1.3",
});
dotenv.config();
registerTools(server);
server.start({
transportType: "stdio"
});