- T-Invest
T-Invest
What is T-Invest?
T-Invest is a server application based on Symfony that implements the Model Context Protocol (MCP) for the T-Invest API, providing tools for users to interact with the T-Invest financial services.
How to use T-Invest?
To use T-Invest, configure the server with your API endpoint, token, and account ID, and run the provided Docker command to start the MCP server.
Key features of T-Invest?
- Access to user accounts and portfolios through the T-Invest API.
- Easy configuration using Docker.
- Integration with the logiscape/mcp-sdk-php library for enhanced functionality.
Use cases of T-Invest?
- Managing and retrieving user account information.
- Accessing and analyzing investment portfolios.
- Integrating with other financial applications for automated trading and investment management.
FAQ from T-Invest?
- What is the purpose of T-Invest?
T-Invest serves as a server for interacting with the T-Invest API, allowing users to manage their investment accounts and portfolios.
- How do I obtain my API token?
You can obtain your API token by following the instructions provided in the T-Invest API documentation.
- Is T-Invest free to use?
Yes, T-Invest is free to use, but you may incur costs based on your usage of the T-Invest API.
Server Config
{
"mcpServers": {
"t-invest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"APP_T_INVEST_BASE_URL",
"-e",
"APP_T_INVEST_TOKEN",
"-e",
"APP_T_INVEST_ACCOUNT_ID",
"prikotov/t-invest-mcp-server:latest",
"bin/server"
],
"env": {
"APP_T_INVEST_BASE_URL": "<API ENDPOINT>",
"APP_T_INVEST_TOKEN": "<YOUR_TOKEN>",
"APP_T_INVEST_ACCOUNT_ID": "<YOUR_ACCOUNT_ID>"
}
}
}
}