The Unified MCP Server Plugin is a powerful tool designed to integrate the Model Context Protocol (MCP) into JavaScript build tools. It creates and manages an MCP server, enabling AI assistants to gain deeper insights into your codebase, build tools, and even control the build process. This plugin is compatible with multiple build tools supported by unplugin
, including Rollup, Vite, Webpack, and more.
UnpluginMcpTool
interface.# Install the plugin
pnpm add -D unplugin-mcp
# Or install bundler-specific one
pnpm add -D rollup-plugin-mcp
Here’s an example of how to use the plugin with Rollup:
// rollup.config.js
import { defineConfig } from 'rollup';
import { rollupPlugin as mcp } from 'unplugin-mcp';
import { ModuleTool, BuildConfigTool, BuildErrorTool } from 'unplugin-mcp/tools';
export default defineConfig({
plugins: [
// other plugins...
mcp({
provideUnpluginMcpTools: () => [
new ModuleTool(),
new BuildConfigTool(),
new BuildErrorTool()
]
}),
// other plugins...
]
});
Add an MCP Server to Cursor Settings:
{
"mcpServers": {
"rollup": {
"url": "http://localhost:14514/mcp/sse"
}
}
}
Check McpPluginOptions
in the types file for all available options.
Tool | Description | Rollup | Webpack |
---|---|---|---|
ModuleTool |
Analyze module dependencies and imports | ✅ | ❌ |
BuildConfigTool |
Inspect build configuration | ✅ | ✅ |
BuildErrorTool |
Debug build errors | ✅ | ✅ |
Extend the plugin with custom tools using the UnpluginMcpTool
interface:
import { InputOptions } from "rollup";
import { UnpluginMcpTool, UnpluginMcpToolSetupOptions } from "unplugin-mcp";
import DeferredCtor, { Deferred } from 'promise-deferred';
import { UnpluginOptions } from "unplugin";
export class BuildConfigTool implements UnpluginMcpTool {
private buildConfig: Deferred<InputOptions>;
affectsBuildProcess: boolean = false;
constructor() {
this.buildConfig = new DeferredCtor<InputOptions>();
}
setupMcpServer(mcpServer: any, options?: any) {
mcpServer.tool(
`get-build-config`,
"Get build configuration",
{},
async () => {
const cfg = await this.buildConfig.promise;
return {
content: [
{
type: 'text',
text: `Build configuration: ${JSON.stringify(cfg)}`
}
]
};
}
);
return mcpServer;
}
registerPlugins(options?: UnpluginMcpToolSetupOptions): UnpluginOptions {
let self = this;
return {
name: 'build-config-tool',
rollup: {
options(config) {
self.buildConfig.resolve(config);
}
}
}
}
}
Register the custom tool in the plugin options:
// rollup.config.js
// ...
plugins: [
mcp({
provideUnpluginMcpTools: () => [
new BuildConfigTool()
]
})
]
// ...
Check out the examples directory for working examples, including:
UnpluginMcpTool
Instances: Adds tools to the MCP server.UnpluginMcpTool
instances to build tools.After setup, the plugin can:
- Handle incoming requests from MCP clients.
- React to hooks triggered by the build tool.
- Provide build contextual information to the MCP client.
MIT License. Copyright (c) 2025 situ2001.
A unified MCP (Model Context Protocol) server plugin for any JavaScript build tools.