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

@fernforge/alchemy-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

@fernforge/alchemy-mcp

MCP server that serves the Alchemy ruleset to any agent, so it writes human-quality prose instead of tell-tale LLM text.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

@fernforge/alchemy-mcp

An MCP server that hands the Alchemy ruleset to any agent, so the prose it writes reads like a person wrote it instead of carrying the usual LLM tells.

It exposes the rules two ways:

  • Tool get_writing_rules — returns the full ruleset. An agent calls it before writing docs, a README, a commit message, or a reply, then follows what comes back.
  • Resource alchemy://rules — the same text as an attachable resource, for clients that prefer to pin it into context.

Use it

Add the server to your MCP client config. For Claude Desktop, in claude_desktop_config.json:

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

Cursor, Cline, and other MCP clients take the same command and args in their own config. Restart the client and the get_writing_rules tool shows up.

Why a server and not just a file

The drop-in file and the npx @fernforge/alchemy init installer both put the rules in one project. The server is for when you'd rather your agent pull the rules on demand across every project, with no file to copy or keep current. Same rules, fetched live.

License

MIT

Keywords

mcp

FAQs

Package last updated on 05 Jul 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