The Unified MCP Server Plugin is a versatile tool designed to integrate the Model Context Protocol (MCP) with various JavaScript build tools such as Rollup, Vite, Webpack, and more. This plugin creates and manages an MCP server, enabling AI assistants to interact with your codebase, build tools, and even control the build process. It provides a unified interface for MCP clients, making it easier to integrate AI capabilities into your development workflow.
To install the plugin, run the following command:
# Install the plugin
pnpm add -D unplugin-mcp
# Or install a bundler-specific version
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: [
mcp({
provideUnpluginMcpTools: () => [
new ModuleTool(),
new BuildConfigTool(),
new BuildErrorTool()
]
}),
]
});
To integrate with Cursor, add the MCP server to your Cursor settings:
{
"mcpServers": {
"rollup": {
"url": "http://localhost:14514/mcp/sse"
}
}
}
For all available options, refer to the McpPluginOptions
in the types file.
Tool | Description | Rollup | Webpack |
---|---|---|---|
ModuleTool |
Analyze module dependencies | ✅ | ❌ |
BuildConfigTool |
Inspect build configuration | ✅ | ✅ |
BuildErrorTool |
Debug build errors | ✅ | ✅ |
You can extend the plugin with custom tools by implementing 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 your Rollup config:
// rollup.config.js
plugins: [
mcp({
provideUnpluginMcpTools: () => [
new BuildConfigTool()
]
})
]
Check out the examples directory for working examples.
UnpluginMcpTool
instances to the MCP server.UnpluginMcpTool
instances to build tools.MIT License. Copyright (c) 2025 situ2001.
A unified MCP (Model Context Protocol) server plugin for any JavaScript build tools.