
Research
/Security News
Popular npm Packages in the keyv and Cacheable Namespaces Compromised in Active Supply Chain Attack
Popular npm packages keyv and cacheable compromised.
@furlow/mcp
Advanced tools
Model Context Protocol server that lets LLM clients author FURLOW Discord bot specs without hallucinating action names, event names, or config shapes.
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.
| Tool | Purpose |
|---|---|
validate_spec | Validate a YAML spec against the real FURLOW schema. Returns structured errors. |
list_actions | The 85 canonical action names. |
list_events | The canonical event names the runtime emits. |
list_builtins | The 14 builtin modules and what they do. |
scaffold_bot | Generate a minimal valid YAML spec, optionally with builtins. |
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[]
MIT
FAQs
Model Context Protocol server for FURLOW spec authoring
We found that @furlow/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.

Security News
/Company News
Socket has joined the new Composer and Packagist sponsorship program as a launch sponsor, supporting the team that keeps PHP's package ecosystem secure.