ibm-bob-cursor-bridge
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., "@ibm-bob-cursor-bridgeAsk Bob to help me implement a new feature for user authentication."
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.
IBM Bob → Cursor MCP Bridge
MCP-Server, der IBM Bob Shell als Tools für Cursor bereitstellt.
Ausführliche Dokumentation: docs/README.md — Einrichtung, IBM-i-MCP-Integration, Beispiele (TASA001F01, DDSHOPBES.CSV).
Voraussetzungen
Node.js 18+
Bob Shell (
bob --version, aktuell 1.0.6 auf vm88)BOBSHELL_API_KEYfür non-interactive Aufrufe
Related MCP server: macOS Shell MCP Server
Installation
git clone
cd ./bob-cursor-mcp
npm install
npm run buildCursor einrichten
Die Projekt-Konfiguration liegt in .cursor/mcp.json. Ergänzen Sie dort den API-Key:
{
"mcpServers": {
"ibm-bob": {
"command": "node",
"args": ["./bob-cursor-mcp/dist/index.js"],
"env": {
"BOBSHELL_API_KEY": "<Ihr-Key>",
"BOB_BIN": "~/.local/bin/bob"
}
}
}
}Danach in Cursor: Settings → Tools & MCP → Server ibm-bob aktivieren.
Alternativ können Sie .env.example nach .env kopieren und den Key dort setzen — für Cursor MCP muss der Key jedoch in mcp.json oder der globalen MCP-Konfiguration stehen.
MCP-Tools
Tool | Beschreibung |
| Healthcheck: installierte Bob-Version |
| Aufgabe an Bob delegieren (Modi: plan, code, advanced, ask) |
| Bob-Sessions des Projekts auflisten |
| Session fortsetzen und Follow-up-Prompt senden |
bob_prompt und bob_resume_session nutzen standardmäßig den Modus advanced (MCP-Tools inkl. IBM i). Über BOB_DEFAULT_CHAT_MODE oder das Tool-Argument mode änderbar.
bob_prompt und bob_resume_session nutzen --approval-mode=auto_edit: Datei-Edits werden automatisch genehmigt, Shell-Befehle weiterhin von Bob bestätigt.
Beispiel (Agent-Chat)
Nutze
bob_version, dannbob_promptim Modusask: Was ist 2+2?
Umgebungsvariablen
Variable | Default | Beschreibung |
| — | Pflicht für Prompt/Resume |
|
| Pfad zur Bob-CLI |
|
| Standard-Modus für |
| Cursor-Projekt / | Standard-Arbeitsverzeichnis |
|
| Timeout pro Bob-Aufruf |
Smoke-Test
npm run build
node scripts/smoke-test.mjsArchitektur
Cursor Agent → MCP (stdio) → dieser Server → bob CLI → IBM Bob Shell
Bob bleibt MCP-Client; dieser Server ist die Brücke in die andere Richtung (Cursor → Bob).
Available Tools
4 toolsbob_list_sessionsA
List Bob Shell sessions for the current project workspace.
| Name | Required | Description | Default |
|---|---|---|---|
| workspace | No | Project directory whose Bob sessions should be listed. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral details. It only states the basic listing action and scope, but omits any information about output format, sorting, default behavior when the optional workspace parameter is omitted, or whether it is a read-only operation. This is a significant gap for a tool with no annotation support.
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, clear sentence with no redundant words. It is perfectly sized for a straightforward list operation and front-loads the core action.
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?
For a simple list tool with one optional parameter, the description is mostly adequate. However, it does not clarify the default for 'current' when the workspace parameter is omitted, which is a gap given the schema marks it optional. Since there is no output schema, a brief mention of what is returned would improve 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?
The schema provides full coverage for the single 'workspace' parameter with a clear description. The tool description adds no extra meaning beyond the schema, simply restating the workspace scope. With 100% schema coverage, 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 uses a specific verb 'List' with a clear resource 'Bob Shell sessions' and scope 'current project workspace.' It clearly distinguishes this from the sibling tools (prompt, version, resume) by explicitly naming the action of listing sessions.
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 context of listing sessions is clear and logically implies use before resuming or prompting. There are no explicit exclusions, but the tool's purpose is self-evident given the sibling names. No alternatives are named, but none are needed for a listing operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bob_promptA
Run IBM Bob Shell non-interactively with auto_edit approval (edits auto-approved, shell still confirmed by Bob).
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Bob chat mode: plan, code, advanced, or ask. | advanced |
| model | No | Optional Bob model override (-m). | |
| stdin | No | Optional stdin content piped into Bob alongside the prompt. | |
| prompt | Yes | Task or question for IBM Bob Shell. | |
| workspace | No | Working directory for Bob. Defaults to the Cursor project root. | |
| include_directories | No | Additional directories Bob may include in its workspace. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important behavioral traits: non-interactive execution and auto_edit approval (edits auto-approved, shell still confirmed). With no annotations provided, this fills a critical transparency gap about side effects. However, it does not cover other potential behaviors like output handling or error conditions, leaving some 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, efficient sentence that communicates the operative verb, mode (non-interactive), and key approval behavior. Every word contributes value; there is no fluff or repetition of schema details.
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?
For a tool that runs a shell with potential file modifications, the description is somewhat terse. It conveys the approval mode but omits what the output looks like, whether it streams, or how errors surface. While the schema covers parameter details, the description does not fully contextualize the execution behavior beyond the approval policy.
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 input schema provides full documentation for all 6 parameters (100% coverage), including descriptions for mode, model, stdin, prompt, workspace, and include_directories. The description does not add parameter-specific meaning beyond the schema, so a baseline score of 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 clearly states the primary action: running IBM Bob Shell non-interactively with a specific approval setting. The verb 'Run' and resource 'IBM Bob Shell' are explicit, and this distinguishes it from sibling tools like bob_version, bob_list_sessions, and bob_resume_session.
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 does not provide any guidance on when to use this tool versus alternatives. It does not mention sibling tools or suggest scenarios (e.g., 'use this to execute a task, bob_list_sessions to view existing sessions'). The usage context is wholly implied by the tool name and purpose, not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bob_resume_sessionB
Resume a previous Bob Shell session and run a new prompt with auto_edit approval.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | advanced | |
| model | No | ||
| stdin | No | ||
| prompt | Yes | Follow-up prompt for the resumed session. | |
| session | Yes | Session index or "latest". | |
| workspace | No | ||
| include_directories | No |
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 mentions 'auto_edit approval' as a key behavior but does not explain the consequences (e.g., potential file modifications, destructive actions, or permission requirements). This is insufficient for a tool that likely mutates state.
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 is front-loaded and free of filler. It efficiently conveys the core action and a key modifier (auto_edit approval), making it highly concise.
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 7 parameters, no annotations, and no output schema, a one-sentence description is inadequate. It omits behavioral implications, return value expectations, and any guidance on the optional parameters, leaving too much uncertainty for an agent to use it 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 description coverage is only 29%, so the description must compensate, but it does not. It only implies the roles of session and prompt without adding detail on mode, model, stdin, workspace, or include_directories. The mention of 'previous' and 'new' adds minimal value beyond 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 a specific verb and resource ('Resume a previous Bob Shell session') and adds the unique action of running a new prompt with auto_edit approval. This clearly distinguishes it from siblings like bob_prompt (new sessions) and bob_list_sessions (listing).
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 when to use the tool (when resuming a session) but does not explicitly contrast it with alternatives or state when not to use it. The use case is clear from context, but no exclusions or alternative names are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bob_versionA
Return the installed IBM Bob Shell version (health check).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. 'Return' explicitly indicates a read-only operation, and 'health check' implies non-destructive intent. Although it doesn't detail edge cases (e.g., if the shell isn't installed), for a simple version query this level of transparency is sufficient.
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, clear sentence that includes the key action and purpose ('health check') without any filler. It is optimally concise and well-structured.
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 simplicity (no parameters, no output schema), the description is fully complete. It states what the tool returns and its intended use, leaving no critical gaps for an agent to invoke it 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?
The input schema is empty (zero parameters), so the baseline is 4. There are no parameter semantics to explain, and the description adds no unnecessary detail about parameters, which 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 uses a specific verb ('Return') with a clear resource ('installed IBM Bob Shell version'), making the tool's function unambiguous. It also distinguishes this from sibling tools (bob_prompt, bob_list_sessions, bob_resume_session) which focus on prompts and sessions, not version info.
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 phrase 'health check' immediately signals when to use this tool—i.e., for verifying the installation/status of IBM Bob Shell. It provides clear context for use, though it doesn't explicitly state when not to use it or mention alternatives. Since no alternatives are relevant for a version check, this is adequate.
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.
4 tool updates
v0.1.0- First observed
bob_list_sessions - First observed
bob_prompt - First observed
bob_resume_session - First observed
bob_version
TDQS
Each tool has a clear, distinct purpose: running a new prompt, resuming an existing session, listing sessions, and checking version. The overlap between bob_prompt and bob_resume_session is resolved by the explicit new-vs-resume distinction.
All tools share the 'bob_' prefix, but the second part mixes noun forms (prompt, version) with verb_noun forms (list_sessions, resume_session). The pattern is readable and predictable, though not uniformly verb_noun.
With 4 tools, the server is well-scoped for its purpose, covering the core operations without unnecessary complexity or bloat.
The set covers running a prompt, resuming a session, listing sessions, and checking version. Minor gaps exist, such as no explicit session termination or detailed session inspection, but the core lifecycle is represented.
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
Shared memory and actions for Claude, Kiro, OpenAI, Cursor, and other MCP-compatible AI clients.
1Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.
Shared memory for AI coding agents. Save once, reuse from Cursor, Claude Code, Codex.
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceFacilitates integration with the Cursor code editor by enabling real-time code indexing, analysis, and bi-directional communication with Claude, supporting concurrent sessions and automatic reconnection.1339MIT
- FlicenseNot gradedqualityDmaintenanceEnables shell command execution on macOS with session management, background processes, caching, and semantic search via Voyage AI.2-
- AlicenseBqualityCmaintenanceEnables Cursor IDE to interact with Tealfabric platform, allowing management of webapps, processes, and documents through natural language.262Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables Claude.ai to interact with the Cursor editor to read files, write code, get selections, and more.141MIT
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/thelad-dev/bob-cursor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server