e18e-module-replacements-mcp
An MCP server that exposes e18e module replacement data. It helps AI assistants suggest lighter, faster, or native alternatives to common JavaScript/Node.js packages.
README
e18e Module Replacements MCP Server
An MCP (Model Context Protocol) server that exposes e18e module replacement data. It helps AI assistants suggest lighter, faster, or native alternatives to common JavaScript/Node.js packages.
What it does
The e18e project ("ecosystem performance") maintains curated lists of JavaScript module replacements — lighter alternatives, native API equivalents, and simple code snippets that can eliminate unnecessary dependencies.
This MCP server fetches three manifests from the e18e/module-replacements repository at startup and exposes them as tools:
| Manifest | Description | Example |
|---|---|---|
| native.json | Features replaceable by native browser/Node.js APIs | is-array → Array.isArray() |
| micro-utilities.json | Tiny packages replaceable by code snippets | array-flatten → array.flat(Infinity) |
| preferred.json | Modules with better, lighter alternatives | axios → fetch / ofetch / ky |
Prerequisites
- Node.js >= 18
Installation
Option 1: Use directly with npx (no install needed)
No installation required — just reference it in your MCP config (see below). The package is fetched and run automatically.
Option 2: Global install
npm install -g e18e-module-replacements-mcp
Option 3: Build from source
git clone https://github.com/santoshyadavdev/e18e-module-replacements-mcp.git
cd e18e-module-replacements-mcp
npm install
npm run build
Configuration
Add the server to your AI assistant's MCP configuration. The examples below use npx so there's nothing to install. If you installed globally or built from source, replace npx with the path to the binary.
Claude Desktop
Open your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"e18e-module-replacements": {
"command": "npx",
"args": ["-y", "e18e-module-replacements-mcp"]
}
}
}
Then restart Claude Desktop.
VS Code (GitHub Copilot)
Create or edit .vscode/mcp.json in your workspace (or add to your user settings):
{
"servers": {
"e18e-module-replacements": {
"command": "npx",
"args": ["-y", "e18e-module-replacements-mcp"]
}
}
}
Cursor
Open Cursor Settings → MCP and add a new server:
- Name:
e18e-module-replacements - Type:
command - Command:
npx -y e18e-module-replacements-mcp
Windsurf
Add to your ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"e18e-module-replacements": {
"command": "npx",
"args": ["-y", "e18e-module-replacements-mcp"]
}
}
}
Tools
lookup_replacement
Search for a replacement by feature name, API name, or module name. Searches across all three manifests with case-insensitive partial matching.
Input:
{ "name": "axios" }
Example output:
## axios
**Source:** preferred
**Type:** module
**Replacements:** fetch, ofetch, ky
**URL:** https://e18e.dev/guide/module-replacements/fetch
More examples:
| Query | What you get |
|---|---|
"axios" |
Preferred replacements: fetch, ofetch, ky |
"Array.from" |
Native API — link to MDN docs |
"deep-merge" |
Preferred replacements: defu, @fastify/deepmerge |
"array-flatten" |
Micro-utility snippet: array.flat(Infinity) |
scan_dependencies
Scan a dependency map (like the dependencies field from package.json) and find which packages have recommended replacements.
Input:
{
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"express": "^4.18.0",
"lodash": "^4.17.21"
}
}
Example output:
Found 3 dependency replacement(s):
- **axios** → fetch, ofetch, ky
https://e18e.dev/guide/module-replacements/fetch
- **chalk** → picocolors, ansis
https://e18e.dev/guide/module-replacements/chalk
- **lodash** → es-toolkit
https://e18e.dev/guide/module-replacements/lodash
Usage tips
Once the MCP server is connected to your AI assistant, you can ask things like:
- "Is there a lighter alternative to chalk?"
- "Scan my package.json dependencies for replacements"
- "What's the native replacement for is-array?"
- "Can I replace moment with something smaller?"
The AI assistant will automatically use the lookup_replacement and scan_dependencies tools to answer.
Development
npm run dev # Watch mode — rebuilds on file changes
How it works
- On startup, the server fetches all three e18e manifests from GitHub
- Manifests are cached in memory for the lifetime of the server process
- The server communicates over stdio using the MCP protocol
- If a manifest fails to load (e.g., no internet), the server still starts — tools will return an error message for the missing data source
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。