GraphRAG TypeScript MCP Tools
An MCP server that connects AI assistants to a Neo4j graph database, enabling querying of movie data through tools like graph statistics, genre-based search, and movie details, along with advanced features such as LLM sampling and completions.
README
GraphRAG TypeScript MCP Tools
A complete implementation of a GraphRAG MCP server built with TypeScript, Neo4j, and the MCP TypeScript SDK. This project demonstrates how to build production-quality MCP servers that expose graph-backed tools, resources, and advanced features like LLM sampling and completions.
Built as part of the Neo4j GraphAcademy — Building GraphRAG TypeScript MCP tools course.
What is MCP?
The Model Context Protocol (MCP) is an open standard by Anthropic that allows AI agents (Claude, Cursor, VS Code Copilot) to connect to external tools and data sources in a standardized way.
Project Structure
genai-mcp-build-custom-tools-typescript/ ├── server/ │ └── index.ts ← Main MCP server: 4 tools + 1 resource + sampling + completions ├── strawberry/ │ └── index.ts ← First MCP server: simple countLetters tool ├── solutions/ ← Course reference solutions ├── .vscode/ │ └── mcp.json ← VS Code MCP configuration └── README.md
What Was Built
Step 1 — First MCP Server (strawberry/index.ts)
The simplest possible MCP server. One tool, no database, stdio transport.
server.registerTool("countLetters", {
description: "Count occurrences of a letter in the text",
inputSchema: {
text: z.string().describe("The text to search in"),
search: z.string().describe("The letter to count"),
},
}, async ({ text, search }) => ({
content: [{
type: "text",
text: String(text.toLowerCase().split(search.toLowerCase()).length - 1),
}],
}));
Test result: countLetters("strawberry", "r") → 3
Tested using the MCP Inspector — a browser-based tool for exploring and testing MCP servers.
Step 2 — Neo4j Connection (Module Scope)
Unlike Python's lifespan context manager, TypeScript uses module-scope variables — the driver is created once at the top of the file and shared by all tools directly.
// Created ONCE when file loads — shared by all tools
const driver: Driver = neo4j.driver(
process.env["NEO4J_URI"] ?? "neo4j://localhost:7687",
neo4j.auth.basic(
process.env["NEO4J_USERNAME"] ?? "neo4j",
process.env["NEO4J_PASSWORD"] ?? "password"
)
);
const database = process.env["NEO4J_DATABASE"] ?? "neo4j";
Graceful shutdown via SIGINT:
process.on("SIGINT", async () => {
await driver.close();
await server.close();
process.exit(0);
});
Step 3 — Tool 1: graphStatistics
Counts all nodes and relationships in Neo4j.
Result: {"nodes": 28863, "relationships": 332522}
Step 4 — Tool 2: getMoviesByGenre
Searches movies by genre ordered by IMDB rating. Uses console.error() for logging — never console.log() in stdio servers (it corrupts the JSON-RPC channel).
server.registerTool("getMoviesByGenre", {
description: "Get movies by genre from the Neo4j database",
inputSchema: {
genre: z.string().describe("The genre to search for (e.g., Action, Comedy, Drama)"),
limit: z.number().default(10).describe("Maximum number of movies to return"),
},
}, async ({ genre, limit }) => {
const { records } = await driver.executeQuery(query,
{ genre, limit: neo4j.int(limit) }, // neo4j.int() for 64-bit integer compatibility
{ database }
);
...
});
Step 5 — Tool 3: browse_movies_by_genre (Paginated)
Cursor-based pagination using Neo4j's SKIP and LIMIT:
const skip = parseInt(cursor, 10) || 0;
// Cypher: SKIP $skip LIMIT $limit
const nextCursor = movies.length === pageSize ? String(skip + pageSize) : null;
Returns:
{
"genre": "Action",
"movies": [...],
"nextCursor": "2",
"page": 1,
"pageSize": 2,
"hasMore": true,
"count": 2
}
Step 6 — Resource: movie://{tmdbId}
Exposes full movie details by TMDB ID using ResourceTemplate:
server.registerResource(
"movie",
new ResourceTemplate("movie://{tmdbId}", { list: undefined }),
{ description: "Get detailed information about a specific movie", mimeType: "application/json" },
async (uri, { tmdbId }) => {
// uri.href = "movie://603"
// returns: contents array with JSON movie data
}
);
Examples: movie://603 (The Matrix), movie://13 (Forrest Gump)
Step 7 — Advanced: Sampling (explainMovieData)
Tools that call the LLM during execution to convert raw Neo4j data into natural language:
const result = await server.server.createMessage({
messages: [{
role: "user",
content: {
type: "text",
text: `Describe '${movieData.title}' (${movieData.released})...`,
},
}],
maxTokens: 200,
});
Without sampling: {'title': 'Toy Story', 'released': '1995', 'actors': [...]}
With sampling (VS Code Copilot): "Toy Story — A clever, funny animated adventure about Woody, a jealous cowboy doll who feels displaced when Buzz Lightyear becomes the new favorite..."
Note: Requires setting capability on the low-level server:
server.server["_capabilities"] = { ...server.server["_capabilities"], completions: {} };
Step 8 — Advanced: Completions
Real-time autocomplete suggestions for genre parameters — queries Neo4j as the user types:
import { CompleteRequestSchema } from "@modelcontextprotocol/sdk/types.js";
server.server.setRequestHandler(CompleteRequestSchema, async (request) => {
if (request.params.argument.name === "genre") {
const { records } = await driver.executeQuery(
`MATCH (g:Genre)
WHERE g.name STARTS WITH $prefix
RETURN g.name AS name
ORDER BY name ASC LIMIT 10`,
{ prefix: request.params.argument.value },
{ database }
);
return { completion: { values: records.map(r => r.get("name")) } };
}
return { completion: { values: [] } };
});
Key Differences from Python Version
| Concept | Python (FastMCP) | TypeScript (McpServer) |
|---|---|---|
| Tool registration | @mcp.tool() decorator |
server.registerTool() method |
| Shared state | Lifespan context manager | Module-scope variables |
| Driver access | ctx.request_context.lifespan_context.driver |
driver (direct) |
| Logging | await ctx.info() |
console.error() |
| Sampling | ctx.session.create_message() |
server.server.createMessage() |
| Completions | @server.completion() |
server.server.setRequestHandler(CompleteRequestSchema) |
| File structure | Separate files per feature | Everything in one index.ts |
| Number params | Python int type hints | neo4j.int() wrapper needed |
| Prompt params | int, str, float |
Always z.string(), parse manually |
Setup
Prerequisites
- Node.js 20+
- npm
- Neo4j Sandbox — Recommendations dataset from sandbox.neo4j.com
Install
git clone https://github.com/Akakinad/genai-mcp-build-custom-tools-typescript
cd genai-mcp-build-custom-tools-typescript
npm install
Configure credentials
cat > server/.env << EOF
NEO4J_URI=bolt://your-sandbox-ip:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=your-password
NEO4J_DATABASE=neo4j
EOF
Verify setup
npx tsx client/test_environment.ts
# Expected: All checks passed!
Running
Test with MCP Inspector (browser UI)
cd server
npx @modelcontextprotocol/inspector npx tsx index.ts
Open the URL shown in terminal → Connect → Tools tab → List Tools → select a tool → Run Tool.
Run server for AI editor use
cd server
npx tsx index.ts
VS Code Configuration (.vscode/mcp.json)
{
"servers": {
"movies-ts": {
"type": "stdio",
"command": "npx",
"args": ["tsx", "/absolute/path/to/server/index.ts"]
}
}
}
Test in VS Code Copilot
Explain the movie "Toy Story" using the movies-ts MCP tool Search for Action movies using the movies-ts MCP tool Get graph statistics using the movies-ts MCP tool
Course
Learning Path: Generative AI & GraphRAG
Course: Building GraphRAG TypeScript MCP tools
Building GraphRAG TypeScript MCP Tools
Companion repository for the GraphAcademy course Building GraphRAG TypeScript MCP Tools.
Students build an MCP (Model Context Protocol) server that connects to a Neo4j graph database, exposing tools and resources for use with AI assistants.
Getting Started
- Copy
.env.exampleto.envand update the values with your Neo4j connection details. - Install dependencies:
npm install
- Start the server:
npm start
- Inspect the server with the MCP Inspector:
npm run inspect
Solutions
The solutions/ directory contains the completed code for each lesson checkpoint.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。