Skip to main content
Glama
brainmakeassistant

Fusion BIP MCP Server

Fusion BIP MCP Server

An MCP server that gives an AI agent safe, described access to Oracle Fusion BI Publisher. Instead of handing an agent raw credentials, you expose a small set of scoped tools it can call — run a query, run a report, fetch or deploy catalog objects — and the server talks to Fusion's BI Publisher SOAP service directly. No database and no middle tier to stand up.

This is a public, source-only mirror of the core server for people who want to read the code or point their own agent at their own Fusion instance.

The tools

Tool

What it does

Access

query_fusion

Run a read-only SELECT against Oracle Fusion and return the rows

read

run_report

Run a deployed BI Publisher report and return its output

read

get_catalog_object

Download a catalog object definition (.xdm / .xdo) for inspection

read

deploy_data_model

Deploy a BI Publisher data model (.xdm) to a catalog folder

write

deploy_report

Deploy a BI Publisher report (.xdo) linked to a data model

write

delete_catalog_object

Delete a data model or report from the catalog

write, off by default

The destructive delete_catalog_object tool stays unregistered unless you explicitly opt in with FUSION_MCP_ENABLE_DELETE=1, so an agent cannot delete anything it was never given.

Related MCP server: ONE-MCP

How it fits together

AI agent (Claude Code, etc.)
      │  MCP (stdio)
      ▼
  server.py        registers the tools, meters usage
      │
  client.py ─────► direct_client.py ──► BI Publisher SOAP  ──►  Oracle Fusion
      │                                   (soap.py builds the envelopes,
  context.py                               execute.py runs them,
  (credentials/targets)                    builders.py shapes .xdm/.xdo)
  • server.py — the MCP server; registers each tool and its description.

  • client.py — the backend seam the server imports.

  • direct_client.py — the six operations implemented against BI Publisher SOAP.

  • soap.py / execute.py / builders.py — envelope construction, execution, and .xdm/.xdo artifact building.

  • context.py — where the Fusion pod and user credentials are resolved for a call. The defaults in this mirror are placeholders (your-pod, bip_user); wire in your own.

  • metering.py — an append-only, metadata-only usage log.

Running it locally

pip install -e ".[stdio]"    # installs the mcp runtime
# set your Fusion pod + user in context.py (or via environment) and register
# fusion-mcp with your MCP client (Claude Code / Desktop) over stdio.

Notes

  • This mirror is the direct-over-SOAP path only. Credential wiring is intentionally left as placeholders — it does not run as-is against any real instance until you supply your own Fusion pod and a user with the BI Publisher Author role.

  • No credentials, tokens, or private endpoints are included.

License

MIT — see LICENSE.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    A local stdio MCP server providing read-only access to Oracle Fusion/ERP Cloud databases via the BI Publisher SOAP API, enabling object discovery, table descriptions, source reading, and SELECT queries.
    9
  • F
    license
    A
    quality
    C
    maintenance
    MCP server for the ONE Framework ERP that enables Claude to explore data models, run queries, and understand business logic through autonomous access.
    10
  • A
    license
    A
    quality
    B
    maintenance
    An MCP server that lets AI models interact with Oracle Fusion Cloud HCM across its entire REST surface. It uses generic, schema-aware tools to dynamically discover licensed modules and resources without per-endpoint code.
    6
    Apache 2.0
  • F
    license
    -
    quality
    B
    maintenance
    MCP server that connects Claude Desktop to an Oracle Fusion Cloud instance. It exposes suppliers, purchase orders, invoices, and project costs as callable tools.

View all related MCP servers

Related MCP Connectors

  • Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.

  • MCP server for AI access to Swagger by SmartBear.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/brainmakeassistant/fusion-bip-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server