Oracle Epm MCP Server

Connect Claude AI (or any MCP-compatible client) to Oracle EPM Cloud via REST APIs.

Local serverstdioGo

What is the Oracle Epm MCP server?

Connect Claude AI (or any MCP-compatible client) to Oracle EPM Cloud via REST APIs. The oracle epm mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 7 defined tools rather than through you.

What it actually does

This server is part of an ongoing series on connecting AI agents to Oracle EPM Cloud. For more Oracle EPM content, tutorials, and tools:

Its toolset

Everything the assistant can do here goes through one of these:

  • get_api_version — Test connectivity, discover API versions
  • list_applications — List all EPM applications
  • get_substitution_variables — Read current month, year, scenario variables
  • run_business_rule — Execute a calc script or business rule
  • check_job_status — Poll whether a job completed or errored
  • export_data_slice — Pull data from the cube by dimension members
  • update_substitution_variable — Change a substitution variable value

Configuration

You will need 5 environment variables: EPM_MODE, EPM_BASE_URL, EPM_USERNAME, EPM_PASSWORD, EPM_APP_NAME. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Oracle Epm's toolset — get_api_version, list_applications, get_substitution_variables and 4 more — is a fair guide to whether it matches your workflow. It is maintained by fmepm; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the oracle epm mcp server does with a few real requests.

Available tools

ToolWhat it does
get_api_versionTest connectivity, discover API versions
list_applicationsList all EPM applications
get_substitution_variablesRead current month, year, scenario variables
run_business_ruleExecute a calc script or business rule
check_job_statusPoll whether a job completed or errored
export_data_slicePull data from the cube by dimension members
update_substitution_variableChange a substitution variable value

How to install the Oracle Epm MCP server

Mac example:

```json
{
  "mcpServers": {
    "oracle-epm-cloud": {
      "command": "node",
      "args": ["/Users/fred/oracle-epm-mcp-server/server/index.js"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
EPM_MODEConfiguration value read at startup.Optional
EPM_BASE_URLEndpoint or connection string the server talks to.Yes
EPM_USERNAMEConfiguration value read at startup.Optional
EPM_PASSWORDConfiguration value read at startup.Optional
EPM_APP_NAMEConfiguration value read at startup.Optional

Example prompts to try

  • Use Oracle Epm to get api version.
  • Use Oracle Epm to list applications.
  • Use Oracle Epm to get substitution variables.

Frequently asked questions

It connects Oracle Epm to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (get_api_version, list_applications, get_substitution_variables, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Oracle Epm directly.