{"id":50735406,"url":"https://github.com/wyre-technology/iqms-mcp","last_synced_at":"2026-06-10T13:01:24.693Z","repository":{"id":355859019,"uuid":"1225081097","full_name":"wyre-technology/iqms-mcp","owner":"wyre-technology","description":"MCP server for IQMS / DELMIAworks (EnterpriseIQ) — read manufacturing ERP data via Oracle and post transactional updates via the WebAPI module","archived":false,"fork":false,"pushed_at":"2026-05-22T16:46:22.000Z","size":115,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-22T18:50:27.132Z","etag":null,"topics":["delmiaworks","enterpriseiq","erp","iqms","manufacturing","mcp","model-context-protocol","msp","oracle"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wyre-technology.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-29T23:41:38.000Z","updated_at":"2026-05-22T16:45:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wyre-technology/iqms-mcp","commit_stats":null,"previous_names":["wyre-technology/iqms-mcp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wyre-technology/iqms-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fiqms-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fiqms-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fiqms-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fiqms-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wyre-technology","download_url":"https://codeload.github.com/wyre-technology/iqms-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fiqms-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34153483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["delmiaworks","enterpriseiq","erp","iqms","manufacturing","mcp","model-context-protocol","msp","oracle"],"created_at":"2026-06-10T13:01:23.586Z","updated_at":"2026-06-10T13:01:24.685Z","avatar_url":"https://github.com/wyre-technology.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `iqms-mcp`\n\nMCP server for **IQMS / DELMIAworks** (EnterpriseIQ), the manufacturing ERP\nfrom Dassault Systèmes.\n\n\u003e **Status:** Scaffolding. Read tools issue queries through\n\u003e [`@wyre-technology/node-iqms`](https://github.com/wyre-technology/node-iqms),\n\u003e which has tentative SQL pending design-partner schema validation. Write tools\n\u003e route through the licensed DELMIAworks WebAPI module and currently throw\n\u003e `NotImplementedError` until vendor SDK access.\n\n## Why this exists\n\nEnterpriseIQ doesn't have a public REST API. The realistic integration paths are:\n\n1. **Direct Oracle** (universal at every install) — read-only queries\n2. **WebAPI module** (paid licensed add-on) — transactional writes\n\nThis MCP server exposes both behind a single decision-tree-navigated tool surface.\n\n## Tools\n\nInitial discovery surface (always available):\n\n- `iqms_navigate` — list tools in a domain\n- `iqms_status` — credential / connection check\n\nDomains: `workorders`, `inventory`, `boms`, `sales_orders`, `purchase_orders`,\n`schedule`, `quality`.\n\nRead tools (Oracle, available always):\n\n| Tool | Purpose |\n|------|---------|\n| `iqms_workorders_list` | Open / in-progress work orders |\n| `iqms_workorders_get` | Full work order detail incl. routings |\n| `iqms_inventory_onhand` | On-hand by item / location / lot |\n| `iqms_inventory_lot_trace` | Lot genealogy walk |\n| `iqms_boms_explode` | BOM explosion |\n| `iqms_boms_where_used` | Where-used reverse lookup |\n| `iqms_sales_orders_list` | Open SOs / ship status |\n| `iqms_purchase_orders_list` | Open POs / expected receipts |\n| `iqms_schedule_capacity` | Machine schedule + capacity load |\n| `iqms_quality_ncrs` | Non-conformances / CARs / CAPAs |\n\nWrite tools (WebAPI, gated):\n\n| Tool | Purpose |\n|------|---------|\n| `iqms_workorders_create` | Create a new work order |\n| `iqms_workorders_post_production` | Post qty made / scrapped |\n| `iqms_inventory_adjust` | Inventory transaction |\n| `iqms_quality_create_ncr` | Open a non-conformance record |\n\n## Run modes\n\n### Local (stdio)\n\n```bash\nIQMS_ORACLE_USER=eiq_ro \\\nIQMS_ORACLE_PASSWORD=… \\\nIQMS_ORACLE_CONNECT_STRING=eiq-db.example.com:1521/EIQ \\\nnpx -y github:wyre-technology/iqms-mcp\n```\n\n### Gateway (HTTP, stateless)\n\n```bash\nMCP_TRANSPORT=http \\\nMCP_HTTP_PORT=8080 \\\nAUTH_MODE=gateway \\\nnode dist/http.js\n```\n\nIn gateway mode, credentials are injected per-request via headers:\n\n| Header | Required | Notes |\n|--------|----------|-------|\n| `X-IQMS-Oracle-User` | yes | Oracle DB user |\n| `X-IQMS-Oracle-Password` | yes | Oracle DB password |\n| `X-IQMS-Oracle-Connect-String` | yes | Easy Connect or TNS |\n| `X-IQMS-WebAPI-Base-URL` | no | Enables write tools when present |\n| `X-IQMS-WebAPI-User` | no | |\n| `X-IQMS-WebAPI-Password` | no | |\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fiqms-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwyre-technology%2Fiqms-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fiqms-mcp/lists"}