🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

truebases-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

truebases-mcp

MCP server for TrueBases. Find opportunities, track market activity, discover business signals, and make better decisions using real-time data from across the internet.

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
48
6.67%
Maintainers
1
Weekly downloads
 
Created
Source

TrueBases MCP Server

An open-source Model Context Protocol (MCP) server that gives AI agents access to TrueBases data intelligence.

What is TrueBases? TrueBases is the data intelligence platform. We help teams to find opportunities, track market activity, and make better decisions using real-time data from across the internet.

What can agents do with this?

Ask your AI assistant things like:

  • "Find me seed investors in climate tech"
  • "What grants are available for AI startups?"
  • "Show me accelerator programs in Europe"
  • "Find remote startup jobs for engineers"
  • "Which VCs invest in health tech at Series A?"

The agent calls TrueBases MCP tools under the hood and returns real data.

Available Tools

ToolDescription
search_investorsSearch VCs, angels, family offices, PE firms, corporate VCs, startup studios
search_grantsFind startup grants and non-dilutive funding
search_programsFind startup programs (cloud credits, mentorship, etc.)
search_acceleratorsFind accelerators & incubators
search_jobsFind startup and tech company jobs

⚡ Quick Setup

1. Get an API Key

Request an API key at truebases.com (or email the team).

2. Install / Run

You can run the server directly via npx (recommended) or install it globally.

Run with npx (No installation required)

Claude Desktop Configuration: Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "truebases": {
      "command": "npx",
      "args": ["-y", "truebases-mcp"],
      "env": {
        "TRUEBASES_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor Configuration: Add a new MCP server in Cursor settings:

  • Name: truebases
  • Type: command
  • Command: npx -y truebases-mcp
  • Environment Variables: TRUEBASES_API_KEY=your-api-key-here

Install globally (Alternative)

npm install -g truebases-mcp

Claude Desktop Configuration:

{
  "mcpServers": {
    "truebases": {
      "command": "truebases-mcp",
      "env": {
        "TRUEBASES_API_KEY": "your-api-key-here"
      }
    }
  }
}

🔧 Environment Variables

VariableRequiredDefaultDescription
TRUEBASES_API_KEYYour TrueBases API key
TRUEBASES_API_URLhttps://www.truebases.comAPI base URL (for self-hosting or dev)

Development

# Clone
git clone https://github.com/Truebases/truebases-mcp.git
cd truebases-mcp

# Install
npm install

# Run in dev mode
TRUEBASES_API_KEY=your-key npm run dev

# Build
npm run build

# Run built version
TRUEBASES_API_KEY=your-key npm start

Tool Reference

search_investors

Search for investors by type, region, stage, thesis, or check size.

Parameters:

ParamTypeDescription
typestringvc, angel, corporate-vc, family-office, pe, startup-studio, public-fund, rbf
regionstringe.g. "USA", "India", "Germany"
stagestringe.g. "1. Idea or Patent", "3. Early Revenue"
qstringFree-text search (e.g. "climate tech", "fintech")
check_size_minstringMin check size in USD
check_size_maxstringMax check size in USD
limitstringResults count (default 10, max 100)

search_grants

Find non-dilutive funding opportunities.

Parameters:

ParamTypeDescription
locationstringe.g. "USA", "Global"
qstringFree-text search
limitstringResults count

search_programs

Find startup programs with cloud credits, mentorship, etc.

Parameters:

ParamTypeDescription
qstringFree-text search
limitstringResults count

search_accelerators

Find accelerator and incubator programs.

Parameters:

ParamTypeDescription
typestringaccelerator or incubator
regionstringGeographic region
stagestringStartup stage
qstringFree-text search
limitstringResults count

search_jobs

Find startup and tech company jobs.

Parameters:

ParamTypeDescription
sourcestringstartup or tech
companystringCompany name filter
rolestringRole title filter
remotestring"true" for remote only
qstringFree-text search
limitstringResults count

Contributing

PRs welcome! Please open an issue first for major changes.

License

MIT — Built with ❤️ by TrueBases

Keywords

truebases

FAQs

Package last updated on 02 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts