ibm-cloud-docs-mcp-server

ibm-cloud-docs-mcp-server

Enables AI clients to search and retrieve IBM Cloud documentation, converting pages to clean Markdown.

Category
Visit Server

README

IBM Cloud Documentation MCP Server

A Model Context Protocol (MCP) server that provides AI clients with the ability to search and retrieve IBM Cloud documentation. This server exposes IBM Cloud's documentation as standardized tools that can be used by LLMs and AI applications.

Features

  • Search Documentation: Search IBM Cloud's extensive documentation library with pagination support
  • Read Documentation: Retrieve and convert documentation pages to clean Markdown format
  • Clean API: Simplified responses containing only essential information
  • MCP Compatible: Works with any MCP-compatible client (Claude Desktop, VSCode with MCP extension, etc.)

Installation

bun install

Usage

Running the MCP Server

bun run mcp

This starts the MCP server using stdio transport, making it compatible with MCP clients.

Running the Demo Application

bun run index.ts

This runs a standalone demo that searches for Ubuntu VSI documentation and converts it to Markdown.

Testing the MCP Server

bun run test-mcp

This runs a test client that connects to the MCP server and demonstrates both tools in action.

MCP Tools

search_documentation

Search IBM Cloud documentation for relevant topics and articles.

Parameters:

  • query (string): Search query for IBM Cloud documentation
  • limit (number, optional): Maximum number of results to return (1-20, default 10)
  • offset (number, optional): Number of results to skip for pagination (default 0)

Returns: JSON object with search results, total count, and pagination info.

read_documentation

Read and convert IBM Cloud documentation page to clean Markdown format.

Parameters:

  • href (string): Documentation href from search results (e.g., '/docs/containers?topic=containers-getting-started')

Returns: Clean Markdown content of the documentation page.

Integration with Claude Desktop

To use this MCP server with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "ibm-cloud-docs": {
      "command": "bun",
      "args": ["--cwd", "/absolute/path/to/this/project", "run", "mcp"]
    }
  }
}

Example Usage

  1. Search for documentation:

    Search for "kubernetes deployment" with limit 5
    
  2. Read specific documentation:

    Read documentation from href "/docs/containers?topic=containers-getting-started"
    
  3. Paginated search:

    Search for "virtual servers" with offset 10 to get the next page
    

Architecture

  • mcp-server.ts: Main MCP server implementation
  • ibm-cloud-api.ts: API client for IBM Cloud documentation
  • utils.ts: Utility functions for URL parsing and HTML-to-Markdown conversion
  • types.ts: TypeScript type definitions

The server reuses robust API integration code while providing a clean, simplified interface through the MCP protocol.

Requirements

  • Bun runtime
  • Node.js 18+ (for MCP SDK compatibility)
  • Internet connection (for accessing IBM Cloud documentation APIs)

License

This project was created using bun init in bun v1.2.15.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured