loading…
Search for a command to run...
loading…
Connect AI agents to Oracle EPM Cloud (Planning, PBCS, EPBCS) via REST APIs. Automate month-end close, run business rules, manage substitution variables, refres
Connect AI agents to Oracle EPM Cloud (Planning, PBCS, EPBCS) via REST APIs. Automate month-end close, run business rules, manage substitution variables, refresh databases, export data slices, and monitor job status through natural language. Built by Fred Mamadjanov, Oracle ACE and EPM Solution Architect.
Connect Claude AI (or any MCP-compatible client) to Oracle EPM Cloud via REST APIs.
Built by Fred Mamadjanov — Oracle ACE, EPM Solution Architect | fmepm.com
This MCP server gives AI agents the ability to interact with Oracle EPM Cloud. Instead of manually running Postman calls or EPM Automate commands, you can ask Claude to:
The server translates these natural language requests into Oracle EPM REST API calls.
Episode 2 — How I Built This Building an AI agent for Oracle EPM Cloud using MCP and REST APIs.
Episode 3 — How to Set Up (Step by Step) Install and configure this MCP server in 5 minutes.
You (natural language) → Claude Desktop → MCP Protocol → This Server → Oracle EPM REST APIs → Your EPM Cloud
| Tool | What It Does | EPM REST API |
|---|---|---|
get_api_version |
Test connectivity, discover API versions | GET /HyperionPlanning/rest/ |
list_applications |
List all EPM applications | GET /HyperionPlanning/rest/v3/applications |
get_substitution_variables |
Read current month, year, scenario variables | GET .../substitutionvariables |
run_business_rule |
Execute a calc script or business rule | POST .../jobs |
check_job_status |
Poll whether a job completed or errored | GET .../jobs/{jobId} |
export_data_slice |
Pull data from the cube by dimension members | POST .../exportdataslice |
update_substitution_variable |
Change a substitution variable value | PUT .../substitutionvariables |
Need a video walkthrough? Watch Episode 3 on YouTube or read the step-by-step guide on fmepm.com.
# Clone or download this folder
cd oracle-epm-mcp-server
npm install
Open Claude Desktop → Settings → Developer → Edit Config
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"oracle-epm-cloud": {
"command": "node",
"args": ["/FULL/PATH/TO/oracle-epm-mcp-server/index.js"]
}
}
}
Replace /FULL/PATH/TO/ with the actual path on your machine.
Windows example:
{
"mcpServers": {
"oracle-epm-cloud": {
"command": "node",
"args": ["C:\\Users\\Fred\\oracle-epm-mcp-server\\index.js"]
}
}
}
Mac example:
{
"mcpServers": {
"oracle-epm-cloud": {
"command": "node",
"args": ["/Users/fred/oracle-epm-mcp-server/index.js"]
}
}
}
Quit Claude Desktop completely and reopen it. You should see the MCP tools icon (hammer) in the chat input area. Click it to verify "oracle-epm-cloud" is listed.
Type in Claude Desktop:
"What EPM applications are available in my environment?"
Claude will use the list_applications tool and return the mock data.
When you have access to an Oracle EPM Cloud environment, set these environment variables in your Claude Desktop config:
{
"mcpServers": {
"oracle-epm-cloud": {
"command": "node",
"args": ["/FULL/PATH/TO/oracle-epm-mcp-server/index.js"],
"env": {
"EPM_MODE": "live",
"EPM_BASE_URL": "https://epm-YOURDOMAIN.epm.REGION.oraclecloud.com",
"EPM_USERNAME": "IDENTITYDOMAIN.your_username",
"EPM_PASSWORD": "your_password",
"EPM_APP_NAME": "Vision"
}
}
}
}
That's it. Same 7 tools, but now hitting your real environment.
The REST APIs use Basic Authentication. Your username format must be identitydomain.username — this is the #1 most common mistake. If you get 401 errors, check this first.
Accounts with multi-factor authentication (MFA) enabled cannot use Basic Auth. You would need OAuth 2.0 instead (not covered in this version).
Here's the sequence an AI agent would follow to automate a month-end close:
get_substitution_variables → sees CurrMonth = "Mar"run_business_rule with "Agg_AllData"check_job_status with the returned job IDexport_data_slice for Revenue, COGS, Net Incomeupdate_substitution_variable CurrMonth from "Mar" to "Apr"get_substitution_variables → verifies CurrMonth = "Apr"This is the exact same workflow a finance team does manually each month — now executable through natural language.
| Error | Cause | Fix |
|---|---|---|
| MCP tools not showing in Claude | Config path wrong | Check claude_desktop_config.json path is absolute |
| 401 Unauthorized | Username format | Use identitydomain.username, not just username |
| 403 Forbidden | Insufficient permissions | User needs EPM admin or appropriate role |
| Connection refused | Wrong URL | Check EPM_BASE_URL matches your environment |
| ETIMEDOUT | Network/firewall | Verify you can reach the EPM URL from your machine |
This server is part of an ongoing series on connecting AI agents to Oracle EPM Cloud. For more Oracle EPM content, tutorials, and tools:
Work with Oracle EPM and want to discuss AI integration? Book a Discovery Call.
This is not an Oracle product. Oracle EPM Cloud is a trademark of Oracle Corporation.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"oracle-epm-cloud-mcp-server": {
"command": "npx",
"args": []
}
}
}