/inform3 | Type: Application | PCID required: Yes
Application MCP Servers
Infor M3
ERP
Server path:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ERP
/inform3 | Type: Application | PCID required: Yes
| Tool | Description |
|---|---|
inform3_get_customer_info | Get customer master information (CRS610MI/GetBasicData) |
inform3_get_customer_order | Retrieve customer order information (OIS100MI/GetOrderHead) |
inform3_get_delivery_head | Get delivery header information from Infor M3 (MWS410MI/GetHead). Returns delivery details such as status, customer, warehouse, and shipping information. |
inform3_get_item_type | Get item type and additional item data from Infor M3 (MMS019MI/Get). Returns extended item master attributes such as item type, category, and classification. |
inform3_get_order_head_text | Get customer order header text/notes from Infor M3 (OIS100MI/GetHeadText). Returns text information attached to the order header. |
inform3_get_picking_list_head | Get picking list header information from Infor M3 (OIS390MI/GetHead). Returns picking list details including status, warehouse, and associated order information. |
inform3_list_batch_order_heads | List batch customer order headers from Infor M3 (OIS100MI/LstBatchHead). Returns order headers filtered by customer number. |
inform3_list_material_plan | List material planning data by item and warehouse from Infor M3 (MMS080MI/LstMtPlByItmWhs). Returns planned orders, demand, and supply information for MRP. |
inform3_list_order_lines | List customer order lines from Infor M3 (OIS100MI/LstLine). Returns all line items for a given order number. |
inform3_list_stock_locations | List stock location details from Infor M3 (MMS310MI/List). Returns inventory quantities by location within a warehouse. |
inform3_search_customer | Search for customers in Infor M3 using the M3 Search API (CRS610MI/SearchCustomer). Supports advanced SQRY query syntax with field:value pairs and wildcards (e.g. “CUNM:MADISON* CUNO:2* RGDT:20210714 ECAR:NC RESP:WWONG”). |
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
customerNumber | string | Yes | — | Customer number |
dateFormat | string | No | "YMD8" | Date format for date fields (e.g. YMD8) |
excludeEmpty | boolean | No | false | Exclude empty fields from results |
rightTrim | boolean | No | true | Right trim field values |
extendedResult | boolean | No | false | Include extended result metadata |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"customerNumber": {
"type": "string",
"description": "Customer number"
},
"dateFormat": {
"type": "string",
"default": "YMD8",
"description": "Date format for date fields (e.g. YMD8)"
},
"excludeEmpty": {
"type": "boolean",
"default": false,
"description": "Exclude empty fields from results"
},
"rightTrim": {
"type": "boolean",
"default": true,
"description": "Right trim field values"
},
"extendedResult": {
"type": "boolean",
"default": false,
"description": "Include extended result metadata"
}
},
"required": [
"PCID",
"customerNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
orderNumber | string | Yes | — | Customer order number |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"orderNumber": {
"type": "string",
"description": "Customer order number"
}
},
"required": [
"PCID",
"orderNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
deliveryNumber | string | Yes | — | Delivery number (DLIX) |
companyNumber | string | No | — | Company number (CONO) |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"deliveryNumber": {
"type": "string",
"description": "Delivery number (DLIX)"
},
"companyNumber": {
"type": "string",
"description": "Company number (CONO)"
}
},
"required": [
"PCID",
"deliveryNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
itemNumber | string | Yes | — | Item number (ITNO) |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"itemNumber": {
"type": "string",
"description": "Item number (ITNO)"
}
},
"required": [
"PCID",
"itemNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
orderNumber | string | Yes | — | Customer order number (ORNO) |
companyNumber | string | No | — | Company number (CONO) |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"orderNumber": {
"type": "string",
"description": "Customer order number (ORNO)"
},
"companyNumber": {
"type": "string",
"description": "Company number (CONO)"
}
},
"required": [
"PCID",
"orderNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
warehouse | string | Yes | — | Warehouse code (WHLO) |
pickingListNumber | number | Yes | — | Picking list / report number (REPN) |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"warehouse": {
"type": "string",
"description": "Warehouse code (WHLO)"
},
"pickingListNumber": {
"type": "number",
"description": "Picking list / report number (REPN)"
}
},
"required": [
"PCID",
"warehouse",
"pickingListNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
customerNumber | string | Yes | — | Customer number (CUNO) |
maxRecords | number | No | 50 | Maximum number of records to return |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"customerNumber": {
"type": "string",
"description": "Customer number (CUNO)"
},
"maxRecords": {
"type": "number",
"default": 50,
"description": "Maximum number of records to return"
}
},
"required": [
"PCID",
"customerNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
warehouse | string | Yes | — | Warehouse code (WHLO) |
itemNumber | string | Yes | — | Item number (ITNO) |
maxRecords | number | No | 50 | Maximum number of records to return |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"warehouse": {
"type": "string",
"description": "Warehouse code (WHLO)"
},
"itemNumber": {
"type": "string",
"description": "Item number (ITNO)"
},
"maxRecords": {
"type": "number",
"default": 50,
"description": "Maximum number of records to return"
}
},
"required": [
"PCID",
"warehouse",
"itemNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
orderNumber | string | Yes | — | Customer order number (ORNO) |
maxRecords | number | No | 50 | Maximum number of records to return |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"orderNumber": {
"type": "string",
"description": "Customer order number (ORNO)"
},
"maxRecords": {
"type": "number",
"default": 50,
"description": "Maximum number of records to return"
}
},
"required": [
"PCID",
"orderNumber"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
warehouse | string | Yes | — | Warehouse code (WHLO) |
maxRecords | number | No | 50 | Maximum number of records to return |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"warehouse": {
"type": "string",
"description": "Warehouse code (WHLO)"
},
"maxRecords": {
"type": "number",
"default": 50,
"description": "Maximum number of records to return"
}
},
"required": [
"PCID",
"warehouse"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
SQRY | string | Yes | — | M3 search query string. Use field:value pairs separated by spaces. Supports wildcards (). Example: “CUNM:MADISON CUNO:2* RGDT:20210714 ECAR:NC” |
maxRecords | number | No | 50 | Maximum number of records to return |
dateFormat | string | No | "YMD8" | Date format for date fields (e.g. YMD8) |
excludeEmpty | boolean | No | false | Exclude empty fields from results |
rightTrim | boolean | No | true | Right trim field values |
extendedResult | boolean | No | false | Include extended result metadata |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"SQRY": {
"type": "string",
"description": "M3 search query string. Use field:value pairs separated by spaces. Supports wildcards (*). Example: \"CUNM:MADISON* CUNO:2* RGDT:20210714 ECAR:NC\""
},
"maxRecords": {
"type": "number",
"default": 50,
"description": "Maximum number of records to return"
},
"dateFormat": {
"type": "string",
"default": "YMD8",
"description": "Date format for date fields (e.g. YMD8)"
},
"excludeEmpty": {
"type": "boolean",
"default": false,
"description": "Exclude empty fields from results"
},
"rightTrim": {
"type": "boolean",
"default": true,
"description": "Right trim field values"
},
"extendedResult": {
"type": "boolean",
"default": false,
"description": "Include extended result metadata"
}
},
"required": [
"PCID",
"SQRY"
]
}
