mcp-investment-data
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-investment-datasearch for companies in the UAE"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-investment-data
A small Model Context Protocol (MCP) server that exposes investment-data tools to any MCP host (Claude Desktop, the MCP Inspector, or a custom client). It's the warm-start for an AI-native data layer.
What it exposes
Two tools over a tiny synthetic firmographic dataset:
search_companies(query)— match companies by name or sectorget_company(name)— fetch one company's full record
No JSON Schema, no request parsing, no validation code — the type hints are the schema. That's the point of MCP: business logic in, protocol handled for you.
Related MCP server: Company Records
Run it
Requires Python 3.10+.
pip install -r requirements.txtVerify it (no extra tooling) — a tiny MCP client that spawns the server, does the handshake, and calls a tool:
python test_client.pyExpected:
Connected. Tools: ['search_companies', 'get_company']
search_companies('UAE'):
{"name": "Tabby", ...}
{"name": "Lean Technologies", ...}
...Use it in Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json, then restart Claude Desktop and ask it to "use investment-data to search companies for UAE."
{
"mcpServers": {
"investment-data": {
"command": "/absolute/path/to/python",
"args": ["/absolute/path/to/server.py"]
}
}
}The
argsarray is the reliable way to pass paths — unlike a single command string (e.g. the MCP Inspector's box), it never splits on spaces, so a project path containing a space works as-is.
Design note (why v1.x, not v2)
The MCP Python SDK's v2 is a pre-release (alpha/beta) with breaking changes between builds — the SDK's own README says not to use it in production. This repo pins stable v1.x (mcp[cli]>=1.27,<2) so it keeps working. Deliberate dependency hygiene, not laziness.
Roadmap
v0 — hello world: two tools over a 5-company in-memory dataset. (this)
v1 — real dataset: ~10k generated firmographic rows; add
get_signalsandlist_recent_funding.v2 — agent: a small agent (
thesis-agent) that consumes this server — "given a fund's thesis, return the top candidate companies and why."v3 — write-up: essay "What MCP means for investment-data infrastructure" + a buyer-facing README.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceA minimal MCP server that converts company names to stock symbols and fetches financial data from Yahoo Finance using two example tools.24
- Flicense-qualityCmaintenanceExposes a fictional B2B CRM database (companies, contacts, deals) as callable MCP tools, enabling AI agents to answer natural-language questions about company records, contacts, and pipeline data.
- FlicenseAqualityDmaintenanceAn MCP server that gives AI agents access to US business entity data, enabling searches across 9 state registries, SEC EDGAR filings, federal contracts, and lobbying disclosures.61
- AlicenseAqualityCmaintenanceMCP server that fetches Brazilian financial data from the CVM open data portal and exposes tools for LLM clients to query companies and calculate financial indicators from published financial statements.4MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/GeBakaev/mcp-investment-data'
If you have feedback or need assistance with the MCP directory API, please join our Discord server