CuratedMCP
OpenAI Agents SDK
Free

How to Install IBM Cloud MCP in OpenAI Agents SDK

Official IBM Cloud integration — manage compute, AI, databases, and security on IBM Cloud

What IBM Cloud MCP does

The official IBM Cloud MCP server gives AI agents access to IBM Cloud resources, AI services, and enterprise workloads. It can provision infrastructure, manage data, and inspect security posture. Features: - Manage IBM Cloud Kubernetes, VMs, and serverless functions - Access Watson AI services and models - Query Cloudant, Db2, and other IBM databases - Manage identity and access policies - Inspect monitoring, logs, and alerts - Deploy and scale applications across regions IBM Cloud MCP is built for enterprise teams using IBM's hybrid cloud platform.

ibm
cloud
watson
hybrid
security

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@ibm/mcp"],
    env={
        "IBM_API_KEY": "...",
        "IBM_REGION": "us-south",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details GitHub Open Config Editor

Install in other clients

For maintainers

If you maintain IBM Cloud MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/ibm-cloud-mcp)](https://curatedmcp.com/marketplace/ibm-cloud-mcp)

Related servers