GroundGround
175+ packages indexed

Context for AI Agents

Ground gives better context to coding agents. It reduces hallucinations in LLMs by allowing agents to index any remote codebase, docs, or package.

GPT-4o175 packages indexed
175+
Packages Indexed
npm & PyPI
84ms
Avg Response Time
Cached search
5
Citations Per Query
Real sources
99%
Accuracy Rate
Verified answers

Features

Everything your agent needs, fully interactive through an API or MCP.

UNIVERSAL SEARCH

Sub-5s responses across millions of indexed pages and GitHub files. Tiny AI models compress results in milliseconds for token-efficient answers.

INSTANT PACKAGE SEARCH

Search pre-indexed packages like AI SDK for ground-truth code examples. Your agent never hallucinates.

GROUND API

Build custom agents and workflows tailored for your company using Ground's API.

SEMANTIC RESEARCH

SOTA search designed to reduce hallucinations. Turns indexed codebases into a dynamic tree your agent queries on the fly.

CONTEXT SHARING

Save conversation histories, plans, and referenced sources. Resume in another agent without losing the thread.

AUTO-SYNC SOURCES

Never rely on outdated docs. We continuously monitor and update your indexed sources automatically.

Build with Ground

Two ways to integrate Ground into your workflow

typescript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { tool } from "ai";
import { z } from "zod";
// Create tools for your agents with Ground API
export const browseEssays = tool({
description: "Get all Paul Graham essays",
inputSchema: z.object({}),
execute: async () => {
const res = await fetch(
"https://api.trygroundai.com/search",
{
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
}
);
return res.json();
}
});

API

Indexing, searching, and technical research

json
1
2
3
4
5
6
7
8
9
10
{
"mcpServers": {
"ground": {
"url": "https://api.trygroundai.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}

Ground MCP

Connect Ground to any coding agent via MCP

Everything you need

Powerful features for AI-powered development

Semantic Search

Search across all your indexed sources with natural language queries.

Package Indexing

Index npm, PyPI, and private packages automatically.

MCP Integration

Connect Ground to Cursor, Claude, and other AI agents.

Documentation RAG

Every answer is backed by real documentation with citations.

Getting Started

The quickest way to get started is with the setup wizard:

bash
1
pip install ground-sdk
1

Install SDK

Python or TypeScript

2

Add Sources

Index packages or repos

3

Search & Build

Get cited answers