@executor-js/plugin-mcp
v1.5.11
Published
Register [Model Context Protocol](https://modelcontextprotocol.io) servers as tool sources for an executor. Supports both stdio-launched servers and remote (HTTP) servers, with optional OAuth.
Readme
@executor-js/plugin-mcp
Register Model Context Protocol servers as tool sources for an executor. Supports both stdio-launched servers and remote (HTTP) servers, with optional OAuth.
Install
bun add @executor-js/sdk @executor-js/plugin-mcp
# or
npm install @executor-js/sdk @executor-js/plugin-mcpUsage
import { createExecutor } from "@executor-js/sdk";
import { mcpPlugin } from "@executor-js/plugin-mcp";
const executor = await createExecutor({
onElicitation: "accept-all",
// Stdio sources spawn a local subprocess and inherit `process.env` —
// only enable for trusted single-user contexts.
plugins: [mcpPlugin({ dangerouslyAllowStdioMCP: true })] as const,
});
const scope = executor.scopes[0]!.id;
// Remote MCP server
await executor.mcp.addSource({
scope,
transport: "remote",
name: "Context7",
endpoint: "https://mcp.context7.com/mcp",
});
// Stdio MCP server (requires `dangerouslyAllowStdioMCP: true` above)
await executor.mcp.addSource({
scope,
transport: "stdio",
name: "My Server",
command: "npx",
args: ["-y", "@my/mcp-server"],
});
// Every MCP tool is now part of the unified catalog
const tools = await executor.tools.list();
const result = await executor.tools.invoke("context7.searchLibraries", {
query: "effect-ts",
});Using with Effect
If you're building on @executor-js/sdk/core (the raw Effect entry), import this plugin from its /core subpath instead — it returns the Effect-shaped plugin with Effect.Effect<...>-returning methods rather than promisified wrappers:
import { mcpPlugin } from "@executor-js/plugin-mcp/core";Status
Pre-1.0. APIs may still change between beta releases. Part of the executor monorepo.
License
MIT
