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.
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.
Be 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
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
MCP server for Hostinger API
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.
oci_search_documentationSearches OCI documentation through the Oracle Help Center Search API and returns structured page results. This tool is intended for the first step of a documentation workflow: finding the most relevant Oracle documentation URL before reading the page.
Parameters:
search_phrase: Search text. Use specific OCI service names, product terms, error
messages, or feature names for better results.limit: Maximum number of results to return. Defaults to 3.page: Search result page number. Defaults to 1.Returns:
Design notes:
oci_read_documentationReads one OCI documentation page, converts it from HTML to Markdown, indexes it by line number, and returns a window of content. This tool is intended for controlled reading of long documentation pages without flooding the MCP response.
Parameters:
url: OCI documentation page URL. The URL must be from docs.oracle.com and must
end with .htm or .html.start_index: 0-based line number to start reading from. Defaults to 0.max_lines: Maximum number of Markdown lines to return. Defaults to 10.Returns:
stats: Total lines, total words, start line, returned lines, remaining lines, and
remaining words.content: Markdown text for the requested line window.table_of_contents: Returned only when start_index == 0; includes heading level,
title, and 0-based line number.Design notes:
Defalt output through stdio, change that use --transport if you want.
{
"mcpServers": {
"oci-documentation-mcp-server": {
"command": "uvx",
"args": [
"--from",
"oci-documentation-mcp-server@latest",
"python",
"-m",
"oci_documentation_mcp_server.server",
"--transport",
"stdio"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
Installation Requirements
uv from Astral or the GitHub README{
"mcpServers": {
"oci-documentation-mcp-server": {
"command": "uv",
"args": [
"--directory",
"path/to/oci-documentation-mcp-server"
"run",
"python",
"-m",
"oci_documentation_mcp_server.server",
"--transport",
"stdio"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
Run as server use Streamable HTTP:
uv run python -m oci_documentation_mcp_server.server --transport "streamable-http" --port 8000 --path "/mcp"
Config on agent tools:
{
"mcpServers": {
"oci-documentation-mcp-server": {
"type": "streamable-
... [View full README on GitHub](https://github.com/jin38324/oci-documentation-mcp-server#readme)