> SYSTEM_INIT :: MCP_SERVER_ONLINE
YOUR AI AGENTS
━━━━━━━━━━━━━━━━━━━━━━━━
INSIDE BOB IDE
PROTOCOL
JSON-RPC 2.0
TRANSPORT
HTTP / SSE
TOOLS
05 ACTIVE
STATUS
OPERATIONAL
◈ TOOL_REGISTRY ◈
> ls ./tools/ — 5 items found
01.analyze
hover to preview command
// AI-powered data analysis
02.scan
hover to preview command
// OCR document extraction
03.form
hover to preview command
// Form schema generator
04.scrape
hover to preview command
// Web content extractor
05.deploy
hover to preview command
// Commit & deploy to Vercel
> cat ARCHITECTURE.txt
┌─────────────────────┐
│ IBM BOB IDE │ ← MCP Client
└──────────┬──────────┘
│ JSON-RPC 2.0 / HTTP
▼
┌─────────────────────┐
│ conversa-bob │ ← YOU ARE HERE
│ (Vercel · Next.js) │
└──────────┬──────────┘
│
┌───────┴───────┐
▼ ▼
Gemini API GitHub API
(OCR · Analyze) + Vercel API
> cat CONNECT.md
// .bob/mcp.json — paste into Bob Shell
{
"mcpServers": {
"conversa": {
"url": "https://conversa-bob.vercel.app/api/mcp",
"headers": {
"Authorization": "Bearer <MCP_AUTH_TOKEN>"
},
"alwaysAllow": [
"conversa_analyze_data",
"conversa_scan_document",
"conversa_build_form",
"conversa_scrape_url",
"conversa_deploy_code"
],
"disabled": false
}
}
}