MCP Plugin for ElizaOS
ElizaOS plugin allowing agents to connect to MCP servers
Overview
The MCP Plugin for ElizaOS integrates the Model Context Protocol (MCP) with ElizaOS, enabling agents to connect to multiple MCP servers and utilize their resources, prompts, and tools.
To use the MCP Plugin, install it in your ElizaOS project using npm, pnpm, yarn, or bun. Then, add the plugin to your character configuration with the necessary MCP server settings.
- Connects to multiple MCP servers simultaneously. - Access to various resources, prompts, and tools from MCP servers. - Supports both "stdio" and "sse" server types with customizable options.
- Enhancing ElizaOS agents with external data and tools.
- Creating complex workflows by integrating multiple MCP servers.
- Providing context-aware responses in conversational agents.
Add to your AI client
Use these steps to connect MCP Plugin for ElizaOS in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"eliza-plugin-mcp-fleek-platform": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"eliza-plugin-mcp-fleek-platform": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"eliza-plugin-mcp-fleek-platform": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"eliza-plugin-mcp-fleek-platform": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"eliza-plugin-mcp-fleek-platform": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"eliza-plugin-mcp-fleek-platform": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eliza-plugin-mcp-fleek-platform"
]
}
}
}FAQ
Can I connect to any MCP server?
Yes, you can connect to any trusted MCP server that you configure in your settings.
What types of servers does MCP support?
MCP supports "stdio" and "sse" server types, each with specific configuration options.
Is there any security concern with using MCP?
Yes, be cautious as MCP servers can execute arbitrary code; only connect to servers you trust.