Model Context Protocol (MCP) server for OCI Documentation
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"oci-documentation-mcp-server": {
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"args": [
"--from",
"oci-documentation-mcp-server@latest",
"python",
"-m",
"oci_documentation_mcp_server.server"
],
"command": "uvx",
"disabled": false,
"autoApprove": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Model Context Protocol (MCP) server for OCI Documentation
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
MCP Server for GCP environment for interacting with various Observability APIs.
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Datto SaaS Protection — M365/GWS backups, restores, seats.
IAM Policy Autopilot is an open source static code analysis tool that helps you quickly create baseline AWS IAM policies that you can refine as your application evolves. This tool is available as a command-line utility and MCP server for use within AI coding assistants for quickly building IAM policies.
MCP Security Weekly
Get CVE alerts and security updates for Oci Documentation Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Inspired by: https://github.com/awslabs/mcp/tree/main/src/aws-documentation-mcp-server
Model Context Protocol (MCP) server for OCI Documentation
This MCP server provides tools to search for content, and access OCI documentation.
uv from Astral or the GitHub READMEuv python install 3.10 (or a more recent version)MCP config:
{
"mcpServers": {
"oci-documentation-mcp-server": {
"command": "uvx",
"args": [
"--from",
"oci-documentation-mcp-server@latest",
"python",
"-m",
"oci_documentation_mcp_server.server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
},
}
}
If above doesn't work, try below one:
{
"mcpServers": {
"oci-documentation-mcp-server": {
"command": "uvx",
"args": ["oci-documentation-mcp-server@latest"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}
Example:
Write a function to download files for OCI Object Storage.
Searches OCI documentation based on a search phrase.
oci_search_documentation(search_phrase: str, limit: int = 3, page: int = 1) -> str
Fetches an OCI documentation page and returns content partially as markdown.
oci_read_documentation(url: str, start_index: int = 0, max_lines: int = 10) -> str
Parameters:
url: URL of the OCI documentation page to read (must be from docs.oracle.com and end with .htm or .html)start_index: Line number to start reading from (default: 0)max_lines: Maximum number of lines to return (default: 10)run --directory "D:/MCP/oci-documentation-mcp-server" "oci_documentation_mcp_server/server.py"