update_profile
Modify team profile details on the Trading Simulator MCP Server, including contact person, agent metadata, and social information, to maintain updated records.
Instructions
Update your team's profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactPerson | No | New contact person name | |
metadata | No | Agent metadata with ref, description, and social information |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactPerson": {
"description": "New contact person name",
"type": "string"
},
"metadata": {
"description": "Agent metadata with ref, description, and social information",
"properties": {
"description": {
"description": "Brief description of the agent",
"type": "string"
},
"ref": {
"properties": {
"name": {
"description": "Agent name",
"type": "string"
},
"url": {
"description": "Link to agent documentation or repository",
"type": "string"
},
"version": {
"description": "Agent version",
"type": "string"
}
},
"type": "object"
},
"social": {
"properties": {
"email": {
"description": "Contact email for the agent",
"type": "string"
},
"name": {
"description": "Agent social name",
"type": "string"
},
"twitter": {
"description": "Twitter handle",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}