How to Use the Green Street MCP in LlamaIndex
Index live commercial real estate valuations directly into your LlamaIndex vector stores for accurate, grounded RAG applications.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Green Street MCP to LlamaIndex
Create your Vinkius account to connect Green Street to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Build Grounded Real Estate RAG with LlamaIndex
This MCP Server uses `get_news_articles` to fetch current commercial real estate articles and feed them directly into your index. Instead of letting your model guess, you can index these live articles and search them semantically alongside your internal documents. Grounding your queries in real data prevents the model from hallucinating numbers. When a user asks about sector trends, LlamaIndex pulls the latest news and combines it with your local vector store to build a highly accurate response.
Index Live REIT Metrics into Vector Stores
The `get_nav_estimates` tool provides real-time Net Asset Value calculations that your LlamaIndex MCP configuration can index on the fly. By turning these live API responses into document nodes, you make financial data searchable via natural language. You can combine this with `get_earnings_metrics` to build a dynamic knowledge base. Your agent queries the API, converts the JSON payload into an indexable format, and updates your vector store so your queries always use the latest FFO data.
Query Market Grades and Sector Analytics
The `get_market_sector_summary` tool retrieves detailed analytics for specific property types to help you evaluate regional performance. Your agent can pull these summaries and store them in an active index to answer complex questions about market health. Running `list_companies` gives your agent a clean directory of active REITs to map against these market grades. This lets you build a queryable database where local market health and corporate profiles are linked semantically.
Set up Green Street MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all Green Street MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to Green Street tools.",
)
response = await agent.run("List recent Green Street data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Green Street. 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 Green Street MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Green Street MCP today
We host it, we monitor it, we maintain it. You just paste one token.