matrix_multiply
Multiply two matrices and return nested lists. Supports exact integer arithmetic, including values above 2^53 passed as decimal strings.
Instructions
Multiply two matrices and return the result as nested lists
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session | No | Workspace to use, as a name or a portable handle. Workspaces have independent variables. A name is scoped to this MCP session; a handle returned by start_sage_session (workspace_token) reaches the same workspace across reconnects and is a bearer credential -- keep it secret. Omit for 'default'. | default |
| matrix_a | Yes | Left matrix (rows of numbers). Integers stay exact; pass values from 2^53 up as decimal strings, e.g. "9007199254740993". | |
| matrix_b | Yes | Right matrix (rows of numbers). Integers stay exact. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||