openclaw-tools-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@openclaw-tools-mcpsearch the web for MCP server best practices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
openclaw-tools-mcp
MCP server that exposes OpenClaw tools to ACP agents (Kiro, Codex, Claude Code, etc.).
ACP agents run in their own runtime with their own native tools but lack access to OpenClaw's capabilities. This server bridges that gap — web search, page fetching, browser automation, PDF analysis, messaging, inter-agent communication, and Canvas are all available as MCP tools.
ACP Agent ◄── stdio (JSON-RPC) ──► openclaw-tools-mcp ◄── HTTP ──► OpenClaw GatewayDefault tools
Tool | Description |
| Search the web |
| Fetch and extract readable content from URLs |
| Control a web browser (navigate, click, type, screenshot, etc.) |
| Analyze PDF documents |
| Send messages via Discord, Telegram, WhatsApp, etc. |
| Control the Canvas visual workspace |
| Send a message into another OpenClaw session (agent-to-agent) |
Related MCP server: Agentweaver MCP Server
Quick start
cd openclaw-tools-mcp
npm install
npm run buildAdd to ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"openclaw-tools": {
"command": "node",
"args": ["/absolute/path/to/openclaw-tools-mcp/dist/index.js"],
"env": {
"OPENCLAW_GATEWAY_TOKEN": "${OPENCLAW_GATEWAY_TOKEN}"
}
}
}
}Requires Node.js >= 22 and a running OpenClaw Gateway.
Configuration
Environment variables
Variable | Required | Default | Description |
| Yes | — | Bearer token for gateway auth |
| No |
| Gateway base URL |
| No | all 7 tools | Comma-separated list of tools to expose |
| No |
| Path to config file |
| No | — | Comma-separated paths to custom tool JSON files |
Config file
Optional openclaw-mcp.json:
{
"gateway": {
"url": "http://127.0.0.1:18789",
"token": "your-token"
},
"tools": ["web_search", "web_fetch", "browser", "pdf", "message", "canvas", "sessions_send"],
"customTools": ["./tools/rooms.json"]
}Environment variables override config file values.
Exposing a subset of tools
{
"mcpServers": {
"openclaw-tools": {
"command": "node",
"args": ["/path/to/openclaw-tools-mcp/dist/index.js"],
"env": {
"OPENCLAW_GATEWAY_TOKEN": "${OPENCLAW_GATEWAY_TOKEN}",
"OPENCLAW_MCP_TOOLS": "web_search,web_fetch,message"
}
}
}
}Custom tool definitions
Load additional tools from JSON files — useful for custom OpenClaw skills/plugins.
{
"tools": [
{
"name": "room_join",
"description": "Join a named room for multi-agent broadcast messaging.",
"parameters": {
"type": "object",
"properties": {
"room": { "type": "string", "description": "Room name" },
"agentId": { "type": "string", "description": "Your agent ID" }
},
"required": ["room", "agentId"]
}
}
]
}Single-tool files (without the tools wrapper) also work. The schema format matches what OpenClaw plugins use in registerTool(). Supported types: string, number, integer, boolean, array. Enums via "enum": [...].
A sessionKey parameter is automatically injected into every custom tool for gateway routing.
A ready-made definition for the rooms plugin is included at tools/rooms.json.
Notes
The server uses stdio transport — ACP agents spawn it as a child process.
All tool calls are proxied to the gateway's
POST /tools/invokeHTTP endpoint.sessions_sendrequires a gateway config change — see below.Every built-in tool (except
sessions_send) accepts an optionalsessionKeyparameter for routing the call to a specific agent session on the gateway.
Enabling sessions_send
sessions_send is on the gateway's default HTTP deny list for /tools/invoke. Without this config change, calls will return 404 Tool not available. Add to your OpenClaw config (~/.openclaw/openclaw.json):
gateway: {
tools: {
allow: ["sessions_send"]
}
}Then restart the gateway (openclaw gateway restart).
Troubleshooting
Server won't start —
OPENCLAW_GATEWAY_TOKENmust be set.Tools return errors — Verify the gateway is running (
openclaw gateway status) and the token is correct.Tool not found (404) — The tool may be blocked by gateway policy. Check
gateway.tools.denyin your OpenClaw config.Verify in Kiro CLI — Run
/mcpin an interactive session to see loaded servers and tools.
License
This project is released into the public domain under The Unlicense. See LICENSE.
Available Tools
7 toolsbrowserC
Control a web browser. Actions: status, start, stop, tabs, open, snapshot, screenshot, navigate, act, click, type, scroll, select, hover, wait, evaluate, close, pdf
| Name | Required | Description | Default |
|---|---|---|---|
| ref | No | Element reference ID | |
| url | No | URL for navigate/open actions | |
| text | No | Text to type or instruction for act | |
| tabId | No | Tab ID for tab operations | |
| width | No | Viewport width | |
| action | Yes | Browser action to perform (e.g. navigate, snapshot, screenshot, click, type, act, status, start, stop, tabs, open, scroll, select, hover, wait, evaluate, close, pdf) | |
| height | No | Viewport height | |
| script | No | JavaScript to evaluate | |
| profile | No | Browser profile name | |
| fullPage | No | Full page screenshot | |
| selector | No | CSS selector for element actions | |
| coordinate | No | [x, y] coordinate for click actions | |
| sessionKey | No | OpenClaw session key for routing |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It only lists action names without explaining side effects, state changes, prerequisites, or return values. For example, it does not state that 'close' terminates the browser session or that 'pdf' generates a file.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with a clear purpose statement. The action list is efficient, though it is presented as an unformatted run-on list that could be better organized into groups or categories.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (13 parameters, multiple actions, no output schema), the description is minimal and incomplete. It does not explain how actions relate to parameters, expected outcomes, or operational requirements, making it insufficient for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the parameter descriptions already document each field's meaning. The description adds little beyond the schema, mainly repeating action names already present in the 'action' parameter description. It does not map actions to required parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Control a web browser' and lists the available actions, which distinguishes it from sibling tools like web_search and web_fetch. However, it does not explain what each action does in detail, so it is clear but not deeply specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like web_fetch or web_search. It does not mention prerequisites, exclusions, or scenarios where one tool would be preferred over another.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
canvasC
Control the Canvas visual workspace. Actions: present, hide, navigate, eval, snapshot, a2ui_push, a2ui_reset
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | URL for present/navigate actions | |
| html | No | HTML content for a2ui_push | |
| node | No | Target node ID | |
| action | Yes | Canvas action (present, hide, navigate, eval, snapshot, a2ui_push, a2ui_reset) | |
| format | No | Snapshot format (png, jpeg) | |
| script | No | JavaScript to evaluate | |
| target | No | Target for present action (URL or HTML) | |
| sessionKey | No | OpenClaw session key for routing |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility for disclosing behavioral traits. It only lists action names without explaining side effects, safety (e.g., eval executes JavaScript), or response behavior. This is a significant gap for a multi-action tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the resource and action list. It is succinct without waste, though it sacrifices explanatory value for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a complex tool with 8 parameters, 7 actions, and no output schema. The description is severely incomplete—it doesn't explain action behaviors, parameter combinations, or return values, making it inadequate for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with each parameter having a description, so the baseline is 3. The description adds no parameter meaning beyond what the schema provides, merely repeating the action list already present in the schema's action property.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the resource (Canvas visual workspace) and provides a list of actions, but 'Control' is generic and doesn't clarify what the workspace is or how it relates to sibling tools like browser. It lists actions but gives no detail on what each does, making it hard to distinguish from alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus browser, web_fetch, or others. There are no exclusions, prerequisites, or context signals indicating the intended use case, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
messageC
Send messages and perform channel actions (Discord, Telegram, WhatsApp, etc.). Actions: send, react, search, read, poll, thread-create, thread-reply
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Recipient identifier (phone, user ID, channel ID) | |
| emoji | No | Emoji for react action | |
| limit | No | Limit for search/read results | |
| query | No | Search query for search action | |
| action | Yes | Message action (send, react, search, read, poll, thread-create, thread-reply) | |
| account | No | Account ID when multiple accounts exist | |
| channel | No | Channel type (discord, telegram, whatsapp, signal, slack) | |
| message | No | Message text to send | |
| threadId | No | Thread ID for thread operations | |
| messageId | No | Message ID for react/reply actions | |
| sessionKey | No | OpenClaw session key for routing | |
| pollOptions | No | Poll answer options | |
| pollQuestion | No | Poll question |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses no auth needs, side effects of sending, failure modes, or per-action behaviors. Irreversible operations like send/react are not flagged.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the verb and resource, then lists actions. It is compact with no fluff, though the action list slightly duplicates the schema's action enum.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 13 parameters, 7 actions, no output schema, and no annotations, the description is far from complete. It fails to explain which parameters apply to each action, per-channel specifics, or return formats, leaving many gaps for the agent to navigate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and all parameters have individual descriptions. The tool description repeats the action list already present in the action parameter but adds no new meaning or mapping of actions to parameters, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the resource (messages/channels) and the verbs (send, react, search, etc.), with explicit channel examples (Discord, Telegram, WhatsApp). It is clear enough to distinguish from web/browser tools, though 'perform channel actions' is broad.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives such as sessions_send. Implied usage for external messaging exists, but there are no exclusions, prerequisites, or comparison to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pdfB
Analyze PDF documents from file paths or URLs
| Name | Required | Description | Default |
|---|---|---|---|
| No | Single PDF path or URL | ||
| pdfs | No | Multiple PDF paths or URLs | |
| model | No | Model to use for analysis | |
| pages | No | Page range (e.g. '1-5', '1,3,5') | |
| prompt | No | Analysis prompt / question about the PDF | |
| sessionKey | No | OpenClaw session key for routing |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Analyze' without specifying whether the tool extracts text, downloads files, reads local paths, makes network requests, or returns structured output. No side effects, permissions, or output behavior are disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the verb and resource. It contains no redundant or filler content, making it highly concise and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 6 parameters, no annotations, and no output schema, the one-line description is far from complete. It fails to explain what 'analyze' returns, how to use the 'model' or 'prompt' parameters, or how the tool behaves in practice. The agent is left to infer all usage context from parameter names and descriptions alone.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The parameter schema provides descriptions for all 6 parameters, so the baseline is 3. The tool description does not add any parameter-specific meaning beyond what the schema already states; it merely mirrors the fact that inputs can be paths or URLs, which is already documented in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Analyze'), a well-defined resource ('PDF documents'), and a source qualifier ('from file paths or URLs'). It is instantly distinguishable from sibling tools like web_search and web_fetch, which are general-purpose and not PDF-specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or compare with related tools such as web_fetch or browser for fetching PDFs from URLs. The intended use case is implied but never explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sessions_sendA
Send a message into another OpenClaw session. Use for agent-to-agent communication. Either sessionKey or label must be provided to identify the target session.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Target session label | |
| message | Yes | Message content to send | |
| sessionKey | No | Target session key (e.g. agent:openclaw-expert:discord:channel:123456) | |
| timeoutSeconds | No | How long to wait for a response |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the action and identification requirement but omits the response/wait behavior enabled by 'timeoutSeconds' (e.g., whether it returns the other session's reply). This is a notable gap for a messaging tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the primary action and followed by an essential requirement. Every word adds value; no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description adequately covers the core purpose and parameter constraints, but for a tool with no output schema or annotations, it should clarify response/wait behavior, especially given the 'timeoutSeconds' parameter. The absence of this detail leaves the agent uncertain about the tool's return value and blocking nature.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
While the schema already describes all parameters, the description adds crucial semantic information: 'Either sessionKey or label must be provided to identify the target session.' This is not reflected in the schema's required list, making it valuable beyond the structured data.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action: 'Send a message into another OpenClaw session' and explicitly mentions 'Use for agent-to-agent communication,' which distinguishes it from sibling tools like 'message' that likely target users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context ('Use for agent-to-agent communication') and identifies a prerequisite (sessionKey or label required). It does not explicitly mention when not to use, but the stated use case is sufficiently directive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_fetchA
Fetch and extract readable content from a URL (HTML converted to markdown or text)
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to fetch | |
| maxChars | No | Maximum characters to return | |
| sessionKey | No | OpenClaw session key for routing | |
| extractMode | No | Content extraction mode |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it does add noteworthy behavioral context: it explains that HTML is converted to markdown or text, implying content extraction rather than raw HTML delivery. However, it does not disclose error handling, redirects, or authentication concerns, leaving some behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately communicates the tool's core function and output format transformation. Every element earns its place, with no redundant phrasing or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is straightforward with a clear schema covering all four parameters, so the description is nearly sufficient. It explains the core transformation (HTML to markdown/text) and output nature (readable content), though it omits details like return value structure or failure modes. Given the simplicity and 100% schema coverage, this is a high degree of completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description's mention of markdown/text conversion aligns with the extractMode parameter but adds no new details beyond what the schema already specifies. It does not elaborate on maxChars or sessionKey semantics, which the schema already covers.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action: 'Fetch and extract readable content from a URL', with explicit mention of HTML being converted to markdown or text. This distinguishes it from siblings like web_search (search) and browser (interactive), as it identifies a unique fetch-and-convert operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for fetching web content, but offers no explicit when-to-use or when-not-to-use guidance, nor does it reference alternative tools. The context from sibling tool names (e.g., browser, web_search) could help an agent infer when this tool is appropriate, but the description itself does not provide that guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_searchC
Search the web and return results
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of results to return | |
| query | Yes | Search query | |
| country | No | Country code filter (e.g. US) | |
| language | No | Language code filter (e.g. en) | |
| freshness | No | Freshness filter (e.g. day, week, month) | |
| date_after | No | Only results after this date (YYYY-MM-DD) | |
| sessionKey | No | OpenClaw session key for routing | |
| date_before | No | Only results before this date (YYYY-MM-DD) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden of behavioral disclosure. It only says 'return results' without mentioning safety, result format, pagination, or any limitations, which is insufficient for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words, but it is borderline under-specified. It states the core function without elaboration, which is concise but not richly informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's 8 parameters and lack of annotations and output schema, the description is clearly insufficient. It fails to explain search behavior, result structure, or filter usage, leaving significant gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds no extra meaning about how parameters like count, country, or freshness affect results, relying entirely on the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'search' and the resource 'the web', clearly stating the core action. It distinguishes itself from sibling tools like web_fetch, which fetches specific URLs, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as web_fetch or browser. There is no indication of suitable contexts or exclusions, leaving the agent without direction for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v1.0.0- First observed
browser - First observed
canvas - First observed
message - First observed
pdf - First observed
sessions_send - First observed
web_fetch - First observed
web_search
TDQS
Each tool targets a distinct domain: web search, URL fetching, browser control, PDF analysis, messaging, canvas, and inter-session communication. No two tools have overlapping purposes; even web_fetch and browser are differentiated by control vs extraction.
The naming pattern is inconsistent: some tools use verb_noun (web_search, web_fetch), some are single nouns (browser, pdf, message, canvas), and one uses noun_verb (sessions_send). All are lowercase snake_case, but the structure varies.
Seven tools is well-scoped for a general-purpose assistant toolkit, covering major capabilities like web, communication, document analysis, and workspace control without feeling bloated or sparse.
The suite covers web research, browsing, document analysis, messaging, canvas control, and agent-to-agent communication. Minor gaps like calendar or file management could be expected, but the core workflows are well covered.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Hosted MCP runtime where the agent is the operator: sign up by tool call, publish your own tools.
171Scrape, crawl and search the web for AI agents via MCP.
All public upAPI operations as MCP tools: web scraping, search, screenshots, PDF, OCR and more.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1-
- AlicenseNot gradedqualityAmaintenanceExposes Agentweaver runs and outcomes as MCP tools for Claude Desktop and compatible clients.55MIT
- AlicenseAqualityBmaintenanceProvides browser automation, audio transcription, and LLM chat as MCP tools for any agent.7MIT
- FlicenseNot gradedqualityCmaintenanceExposes task management (add, list, complete tasks) and document search (RAG) as MCP tools for AI agents.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/haliphax-ai/openclaw-tools-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server