🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@furlow/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

@furlow/mcp

Model Context Protocol server for FURLOW spec authoring

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@furlow/mcp

Model Context Protocol server that lets LLM clients author FURLOW Discord bot specs without hallucinating action names, event names, or config shapes.

Quick start

Add to your client's MCP config. For Claude Desktop, edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "furlow": {
      "command": "npx",
      "args": ["-y", "@furlow/mcp"]
    }
  }
}

Restart the client. The model will now see five FURLOW tools.

Tools

ToolPurpose
validate_specValidate a YAML spec against the real FURLOW schema. Returns structured errors.
list_actionsThe 85 canonical action names.
list_eventsThe canonical event names the runtime emits.
list_builtinsThe 14 builtin modules and what they do.
scaffold_botGenerate a minimal valid YAML spec, optionally with builtins.

Programmatic use

import { createServer, validateSpec, scaffoldBot } from '@furlow/mcp';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';

const server = createServer();
await server.connect(new StdioServerTransport());

Or call the helpers directly:

import { validateSpec, scaffoldBot, FURLOW_ACTIONS } from '@furlow/mcp';

console.log(validateSpec(yamlBody));          // { valid, errors }
console.log(scaffoldBot({ name: 'My Bot' })); // yaml string
console.log(FURLOW_ACTIONS);                  // string[]

License

MIT

Keywords

furlow

FAQs

Package last updated on 20 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts