How to Use the CD Return Calculator MCP in CrewAI
Deploy autonomous financial analysis teams with the CD Return Calculator MCP for CrewAI.
Works with every AI agent you already use
…and any MCP-compatible client
Connect CD Return Calculator MCP to CrewAI
Create your Vinkius account to connect CD Return Calculator to CrewAI — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Equip specialized agents with financial math
A proper analysis crew requires specialized roles. You might have one agent acting as a researcher and another as a financial planner. This MCP gives your quantitative agents the exact mathematical capabilities they need to evaluate locked deposits. Assign `calculate_cd_yield` specifically to your number-crunching agent. It processes the compounding interest and passes the raw data to your analyst agent. The crew collaborates using accurate figures rather than hallucinated math.
Evaluate market context autonomously
Yields do not exist in a vacuum. Your analyst agent needs to know what liquid cash is paying right now. This tool provides the baseline metrics required for a complete market evaluation. Your research agent executes `fetch_market_benchmarks` to retrieve hardcoded rates for liquid alternatives. It shares these metrics in the shared memory pool. The moderator agent can then decide if the locked rate justifies the lack of liquidity.
Produce final investment reports in CrewAI
The end goal of your multi-agent team is a definitive recommendation. Building that recommendation requires comparing multiple scenarios side-by-side. You can delegate this final assembly to a dedicated reporting agent. Have your reporting agent call `generate_investment_comparison` to compile the final matrix. It takes the locked CD terms and compares them against the liquid benchmarks. The crew outputs a concrete, data-backed recommendation for the end user.
Set up CD Return Calculator MCP in CrewAI
Prerequisites
- Python 3.10+ installed
-
crewaipackage (pip install crewai) - Active Vinkius subscription with a valid endpoint token
- 1
Install CrewAI
Run
pip install crewaito install the framework. MCP support is built-in via themcpsparameter. - 2
Add the MCP URL to your agent
Pass your Vinkius endpoint directly to the
mcpslist. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. CrewAI handles tool discovery and caching automatically. - 3
Kick off your crew
Create a
Crewwith your agent and tasks. Callcrew.kickoff()— the agent will automatically invoke CD Return Calculator tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="CD Return Calculator Analyst",
goal="Access and analyze CD Return Calculator data via MCP.",
backstory="Expert analyst with direct CD Return Calculator access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent CD Return Calculator transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Prerequisites
- Python 3.10+ installed
-
crewai+crewai-toolspackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install crewai crewai-tools. TheMCPServerAdapterhandles lifecycle management and tool conversion. - 2
Connect with MCPServerAdapter
Use
MCPServerAdapteras a context manager withSseServerParameterspointing to your Vinkius endpoint. The adapter automatically manages connection lifecycle. - 3
Assign tools and run
Pass the returned
mcp_toolsto your agent'stoolsparameter. The adapter converts MCP tools to nativeBaseToolobjects compatible with all CrewAI agents.
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
from mcp import SseServerParameters
server_params = SseServerParameters(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
with MCPServerAdapter(server_params) as mcp_tools:
agent = Agent(
role="CD Return Calculator Analyst",
goal="Access and analyze CD Return Calculator data via MCP.",
backstory="Expert analyst with direct CD Return Calculator access.",
tools=mcp_tools,
)
task = Task(
description="List recent CD Return Calculator transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by CD Return Calculator. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about CD Return Calculator MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the CD Return Calculator MCP today
We host it, we monitor it, we maintain it. You just paste one token.