{
"mcpServers": {
"jdeatinamcppurchaseserver": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
JDE Atina MCP Core Purchase Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 13 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for JDEAtinaMCPPurchaseServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that exposes JD Edwards (JDE) purchase order approval workflows to AI assistants like Claude. It acts as a bridge between Claude and the JDE backend through a Mulesoft API layer.
The JDE MCP Server allows Claude (or any MCP-compatible AI assistant) to interact with JD Edwards EnterpriseOne purchase order data in natural language. Users can list pending POs, review their details, and approve or reject them — all from a conversational interface.
User (Claude.ai)
│
▼
Claude AI (MCP Client)
│ MCP over HTTP (SSE)
▼
JDE MCP Server
https://<your-host>/mcp/message
│ REST API calls
▼
Mulesoft API Layer
│
▼
JD Edwards EnterpriseOne
| Requirement | Details | |---|---| | MCP-compatible client | Claude.ai (Pro / Team / Enterprise) or any MCP client | | JDE credentials | A valid JDE username and password | | Network access | Client must be able to reach the MCP server URL | | Server runtime | The MCP server must be running and publicly reachable (e.g., via ngrok for local dev) |
| Field | Value |
|---|---|
| Name | JDE Atina (or any descriptive label) |
| URL | https://<your-host>/mcp/message |
| Transport | SSE (Server-Sent Events) |
Local development with ngrok:
If running the server locally, expose it with:ngrok http 3000Then use the generated
https://<random>.ngrok-free.app/mcp/messageas the URL.
Every session must begin with a login call. The server maintains a session token after authentication; all subsequent tool calls reuse it until the session expires.
| Parameter | Type | Required | Description |
|---|---|---|---|
| user | string | ✅ | JDE username (e.g., JDOE) |
| password | string | ✅ | JDE password |
2026-03-28T13:29:25Z).jde_login again and retry the operation.jde_loginAuthenticates the user against JDE via the Mulesoft API. Must be called before any other tool.
{
"tool": "jde_login",
"parameters": {
"user": "JDOE",
"password": "yourpassword"
}
}
Returns: Confirmation of authenticated user and session expiry timestamp.
jde_list_pending_purchase_ordersLists all purchase orders currently pending approval for the logged-in user.
{
"tool": "jde_list_pending_purchase_orders",
"parameters": {
"limit": 10
}
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| limit | integer | ❌ | 10 | Max number of POs to return |
Returns: Array of pending purchase orders with fields including:
| Field | Description |
|---|---|
| documentOrderTypeCode | PO type (e.g., OP) |
| documentOrderInvoiceNumber | PO number (e.g., 5082) |
| documentCompanyKeyOrderNo | Company key (e.g., 00001) |
| documentSuffix | Suffix (e.g., 000) |
| entityNameSupplier | Supplier name |
| entityNameShipTo | Ship-to entity name |
| amountGross | Total gross amount |
| currencyCodeBase | Currency (e.g., USD) |
| dateRequested | Request date |
| dateTransaction | Transaction date |
| `calcula