IBM Sales Guidance MCP Server
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 Sales Guidance MCP ServerGenerate a client roadmap for Acme Corp."
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 Sales Guidance Tool — MCP Server
An MCP (Model Context Protocol) server that exposes the IBM Sales Guidance Tool as tools Bob can invoke directly from chat.
Once registered, Bob can:
Ask the IBM AskSales AI assistant questions about products, deals, and competitors
Search IBM AskSales content (playbooks, battle cards, competitive intel)
Generate a full 4-section Client Roadmap for any named account
Check live Watson Assistant + AskSales connectivity status
Tools
Tool | Description |
| Check Watson + AskSales connectivity and latency — run this first when debugging |
| Ask the AskSales Watson Assistant a question (product knowledge, objections, strategy) |
| Search IBM AskSales content library for playbooks or competitive intel |
| Generate a full 4-section IBM Client Roadmap (takes 30–90s) |
Setup
1. Install dependencies and build
cd sales-guidance-mcp
npm install
npm run build2. Register with Bob
Add the following to your .bob/mcp.json (workspace scope):
{
"mcpServers": {
"sales-guidance": {
"command": "node",
"args": ["/absolute/path/to/sales-guidance-mcp/build/index.js"],
"env": {
"SALES_GUIDANCE_URL": "https://ibm-sales-guidance-tool.2ck01rg2j69e.us-east.codeengine.appdomain.cloud",
"SELLER_EMAIL": "your.email@ibm.com"
}
}
}
}Replace /absolute/path/to/sales-guidance-mcp with the real path on your machine.
3. Verify
Ask Bob: "Check the sales guidance tool status" — it will call sales_guidance_diag and report Watson + AskSales connectivity.
Configuration
All config is via environment variables in the env block of mcp.json:
Variable | Required | Default | Description |
| ✅ Yes | — | Base URL of the deployed Sales Guidance Tool |
| No |
| IBM seller email passed to Watson as |
| No |
| HTTP timeout in ms. Roadmap calls can take up to 90s — keep this above 90000. |
Architecture
Bob (chat) ──── MCP tool call ────► sales-guidance-mcp (stdio)
│
│ HTTPS
▼
IBM Sales Guidance Tool
(Code Engine, us-east)
│
┌──────────┴──────────┐
│ │
Watson Assistant IBM AskSales
(AskSales skill) (when configured)The MCP server is a thin HTTP client — it calls the deployed Next.js app's API routes over HTTPS. No local services, no Docker, no credentials stored in this repo.
Known issues
Watson Assistant / AskSales outage (2026-07-21)
IBM reported degradation on IBM product queries in Watson Assistant / AskSales. Symptoms: sales_guidance_chat and sales_guidance_roadmap time out. Run sales_guidance_diag — if watson.latencyWarning is set, the outage is still active. Retry later.
AskSales search returns empty results
sales_guidance_asksales requires real AskSales credentials on the server side (ASKSALES_API_URL, ASKSALES_API_KEY). Run sales_guidance_diag — if asksales.enabled is false, placeholder credentials are in use and this is expected.
Roadmap timeout
The sales_guidance_roadmap tool has a 100s client timeout (default). Watson takes 30–90s to generate a full 4-section roadmap. If you consistently hit timeouts, set REQUEST_TIMEOUT_MS=120000 in the env block.
Development
npm run build # compile TypeScript → build/index.js
npm run dev # watch modeThe source is a single file: src/index.ts. Each tool is registered with server.registerTool() using the MCP SDK v2 API.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/slaphen1/ibm-sales-guidance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server