Skip to main content
Glama
paperinvest

Paper MCP Server

by paperinvest

update_account

Modify account details, such as updating the name or other information, using the specified account ID on the Paper MCP Server. Simplify account management through natural language interactions.

Instructions

Update account details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountIdYesAccount ID
nameNoNew account name

Implementation Reference

  • Handler function for 'update_account' tool that performs a PUT request to update the account name via the Paper Invest API.
    case 'update_account': response = await api.put(`/accounts/${args.accountId}`, { name: args.name }); break;
  • Tool definition including name, description, and input schema for the 'update_account' tool, used for registration in listTools.
    { name: 'update_account', description: 'Update account details', inputSchema: { type: 'object', properties: { accountId: { type: 'string', description: 'Account ID' }, name: { type: 'string', description: 'New account name' } }, required: ['accountId'] } },

Latest Blog Posts

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/paperinvest/mcp-server'

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