
Abell
- 437 repo stars
- Updated March 4, 2026
- abelljs/abell
Abell MCP is a MCP server that links AI agents to Abell-related tooling via a local stdio npm package.
About
The Abell MCP server connects AI coding agents to tooling around the Abell static-site and content stack. Published as io.github.abelljs/abell, it ships the abell-ai npm package (0.0.9) with stdio transport, which is the common pattern developers use when they want tools colocated with the repo instead of a cloud MCP URL. If you are building marketing sites, blogs, or documentation with Abell and want the agent to call Abell-aware capabilities from Claude Code, Cursor, or Codex, this entry is the registry hook for that integration. The surface area is intentionally narrow compared with marketplace-wide skill packs: it is an MCP bridge tied to one framework family. Treat it as agent tooling—register the server, point your client at the npm binary, and keep site generation and content edits in one loop. Confidence is moderate because public docs emphasize the MCP presence more than enumerating every tool name.
- Official Abell ecosystem MCP package (abell-ai) on npm at version 0.0.9
- Stdio transport for local agent registration without a hosted remote endpoint
- Scoped to Abell AI utilities rather than a general-purpose web or database bridge
- GitHub source at abelljs/abell for auditing install and upgrade paths
- Fits content and static-site builders already standardizing on Abell
Abell by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add abell-ai -- npx -y abell-aiAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 437 |
|---|---|
| Package | abell-ai |
| Transport | STDIO |
| Auth | None |
| Last updated | March 4, 2026 |
| Repository | abelljs/abell ↗ |
What it does
Wire your coding agent to Abell-related AI tooling over MCP so static-site and content workflows stay in the editor.
Who is it for?
Best when you're shipping Abell-based sites and already run Claude Code or Cursor and want a registry-listed stdio MCP.
Skip if: Skip if you need hosted remotes, multi-region SEO crawlers, or frameworks outside the Abell stack.
What you get
After registration, your agent can invoke Abell-aligned MCP tools from the same session where you edit templates and content.
- Registered local stdio MCP server entry in your agent config
- Agent-visible Abell AI tool surface after client restart
- Repeatable npm-based upgrade path tied to package version 0.0.9
By the numbers
- Registry version 0.0.9
- Single npm package identifier abell-ai with stdio transport
- Source repository github.com/abelljs/abell
README.md
A Low-Level, Framework Agnostic, Highly Flexible Static-Site-Generator to help you build Static Sites without too much of learning curve.
Documentation: https://abelljs.org
📖 Create Abell Project
npx create-abell my-abell-site
cd my-abell-site
npm run dev
Check out https://abelljs.org for complete documentation.
🚀 Syntax Example
<!-- index.abell -->
<html>
<body>
I can render JavaScript! Look: {{ 10 + 10 }}
</body>
</html>
Output:
<!-- index.html -->
<html>
<body>
I can render JavaScript! Look: 20
</body>
</html>
Learn More at Syntax Guide
📄 License
This project is licensed under the MIT License
🤗 Contributing
Check out CONTRIBUTING.md
If you like my work, you can sponsor me on GitHub: https://github.com/sponsors/saurabhdaware 🌻
Recommended MCP Servers
How it compares
Framework-scoped MCP integration, not a journey-wide methodology skill or SEO data server.
FAQ
Who is Abell MCP for?
Developers and content developers using Abell who want MCP-native agent access to Abell AI utilities.
When should I use Abell MCP?
During the build phase while you generate or refactor Abell sites and want the agent to call packaged tools instead of guessing CLI flags.
How do I add Abell MCP to my agent?
Install the abell-ai npm package (0.0.9), register it as a stdio MCP server in Claude Code, Cursor, or Codex, and restart the client so tools load.