Symbolic Algebra MCP Server

by sdiehl

create_vector_field

Create a vector field in a specified coordinate system by defining x, y, and z components as symbolic expressions using the Symbolic Algebra MCP Server.

Instructions

Creates a vector field in the specified coordinate system.

Args: coord_sys_name: The name of the coordinate system to use. component_x: String expression for the x-component of the vector field. component_y: String expression for the y-component of the vector field. component_z: String expression for the z-component of the vector field. Example: # First create a coordinate system create_coordinate_system("R") # Create a vector field F = (y, -x, z) vector_field = create_vector_field("R", "R_y", "-R_x", "R_z") Returns: A key for the vector field expression.

Input Schema

NameRequiredDescriptionDefault
component_xYes
component_yYes
component_zYes
coord_sys_nameYes

Input Schema (JSON Schema)

{ "properties": { "component_x": { "title": "Component X", "type": "string" }, "component_y": { "title": "Component Y", "type": "string" }, "component_z": { "title": "Component Z", "type": "string" }, "coord_sys_name": { "title": "Coord Sys Name", "type": "string" } }, "required": [ "coord_sys_name", "component_x", "component_y", "component_z" ], "title": "create_vector_fieldArguments", "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sdiehl/sympy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server