Tools
OmniClawPlugin
This is a Omnimind Xiaowan Plugin for OpenClaw bot.
Install
openclaw plugins install ./OmniClawPlugin
Configuration Example
{
"plugins": {
"entries": {
"mcp-adapter": {
"enabled": true,
"config": {
"servers": [
{
"name": "myserver",
"transport": "stdio",
"command": "npx",
"args": ["-y", "some-mcp-server"],
"env": {
"API_KEY": "${MY_API_KEY}"
}
}
]
}
}
}
}
}
README
# Attension
使用这个插件的同时,请安装 `OpenClawDocs` 和 `SKILLS` 目录到你的 OpenClaw.
你可以直接指定目录,要求 Bot 进行安装。
While using this plugin, please install the `OpenClawDocs` and `SKILLS` directories into your OpenClaw.
You can directly specify the directories and request the Bot to perform the installation.
# Special Thanks
This plugin is mainly based on the [MCP Adapter](https://github.com/androidStern-personal/openclaw-mcp-adapter) project by [androidStern-personal] (https://github.com/androidStern-personal) under MIT license.
# MCP Adapter (OpenClaw Plugin)
Exposes MCP (Model Context Protocol) server tools as native OpenClaw agent tools.
Instead of running MCP servers through a CLI skill, this plugin connects to your MCP servers at startup, discovers their tools, and registers each one as a first-class tool that agents can invoke directly.
## Requirements
- OpenClaw gateway
- Node.js 18+
- A Phone Installed with Xiaowan beta version.
## Install from source
```bash
git clone https://github.com/omnimind-ai/OmniClawPlugin
openclaw plugins install ./OmniClawPlugin
```
## Configuration
Note: The following steps are generally applicable to all types of MCP servers. Remember Xiaowan MCP server running on your Phone is streamableHTTP type.
** You can directly configure the plugin in OpenClaw's WebUI. **
### 1. Enable the plugin and configure servers
Add to `~/.openclaw/openclaw.json`:
```json
{
"plugins": {
"entries": {
"mcp-adapter": {
"enabled": true,
"config": {
"servers": [
{
"name": "myserver",
"transport": "stdio",
"command": "npx",
"args": ["-y", "some-mcp-server"],
"env": {
"API_KEY": "${MY_API_KEY}"
}
}
]
}
}
}
}
}
```
### 2. Allow for sandboxed agents
Add `"mcp-adapter"` to your sandbox tool allowlist:
```json
{
"tools": {
"sandbox": {
"tools": {
"allow": ["group:runtime", "group:fs", "mcp-adapter"]
}
}
}
}
```
### 3. Restart the gateway
```bash
openclaw gateway restart
```
### 4. Verify
```bash
openclaw plugins list
# Should show: MCP Adapter | mcp-adapter | loaded
```
## Server Configuration
### Stdio transport (spawns a subprocess)
```json
{
"name": "filesystem",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@anthropic/mcp-filesystem", "/path/to/dir"],
"env": {
"SOME_VAR": "value"
}
}
```
### HTTP transport (connects to a running server)
```json
{
"name": "api",
"transport": "http",
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer ${API_TOKEN}"
}
}
```
## Config Options
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| `servers` | array | `[]` | List of MCP servers to connect to |
| `toolPrefix` | boolean | `true` | Prefix tool names with server name (e.g., `myserver_toolname`) |
### Server Options
| Option | Type | Required | Description |
|--------|------|----------|-------------|
| `name` | string | Yes | Unique name for this server |
| `transport` | `"stdio"` \| `"http"` | No | Connection type (default: `stdio`) |
| `command` | string | stdio only | Command to spawn |
| `args` | string[] | No | Command arguments |
| `env` | object | No | Environment variables |
| `url` | string | http only | Server URL |
| `headers` | object | No | HTTP request headers |
## Environment Variable Interpolation
Use `${VAR_NAME}` in `env` and `headers` values to reference environment variables from `~/.openclaw/.env`:
```json
{
"env": {
"API_KEY": "${MY_SERVICE_API_KEY}"
}
}
```
## How It Works
1. On gateway startup, the plugin connects to each configured MCP server
2. Calls `listTools()` to discover available tools
3. Registers each tool with OpenClaw using its name, description, and JSON Schema
4. When an agent invokes a tool, the plugin proxies the call to the MCP server
5. If the connection dies, it automatically reconnects on the next tool call
## Example: AgentMail
```json
{
"name": "agentmail",
"transport": "stdio",
"command": "npx",
"args": ["-y", "agentmail-mcp"],
"env": {
"AGENTMAIL_API_KEY": "${AGENTMAIL_API_KEY}"
}
}
```
This registers tools like `agentmail_create_inbox`, `agentmail_send_email`, etc.
## License
MIT
tools
Comments
Sign in to leave a comment