ftc-knowledge-server
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., "@ftc-knowledge-serverSearch for Pinpoint localization notes"
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.
ftc-knowledge-server
Remote MCP (Model Context Protocol) server for FTC + Pedro Pathing research. Deploy on Vercel and connect from Cursor, Claude Code, Claude Desktop, or any MCP-compatible AI agent.
What's included
Technical gold notes (Pinpoint, OTOS, Pedro gotchas)
AI agent code generation guidance
Pedro Pathing patterns (pathing, localization, autos, teleop, tuning)
Java code templates (FConstants, LConstants, Auto, Subsystem)
Verified team repository index
High-signal Java file index
Official docs and community links
Related MCP server: Satori
Deploy to Vercel
Or manually:
npm install
npm run build
npx vercel --prodConnect to Cursor
Add to .cursor/mcp.json in your project (or Cursor Settings → MCP):
{
"mcpServers": {
"ftc-knowledge": {
"url": "https://YOUR-DEPLOYMENT.vercel.app/api/mcp"
}
}
}If your Cursor version doesn't support remote URL MCP yet:
{
"mcpServers": {
"ftc-knowledge": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://YOUR-DEPLOYMENT.vercel.app/api/mcp"]
}
}
}Restart Cursor after saving. The AI can now call tools like ftc_get_full_context and ftc_search_research.
Connect to Claude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json or project MCP config:
{
"mcpServers": {
"ftc-knowledge": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://YOUR-DEPLOYMENT.vercel.app/api/mcp"]
}
}
}MCP Tools
Tool | Description |
| Search notes, gotchas, docs, verified resources |
| Get FConstants, LConstants, Auto, Subsystem templates |
| Full context bundle for code generation |
| Patterns by category (pathing, localization, etc.) |
| Verified team repo index |
| Search high-signal Java files index |
REST API
For apps that can't use MCP directly:
GET /api/context?action=info
GET /api/context?action=search&q=pinpoint
GET /api/context?action=template&type=fconstants
GET /api/context?action=context
GET /api/context?action=patterns&category=pathing
GET /api/context?action=teams
GET /api/context?action=codebase&pattern=FollowerExample prompts (after connecting)
Use ftc_get_full_context to load FTC context, then write an autonomous OpMode with Pedro Pathing.
Search ftc_search_research for the PID zeroing bug and fix my FConstants.
Use ftc_get_template with type fconstants for a Pinpoint mecanum setup.Local development
npm install
npm run dev
# MCP endpoint: http://localhost:3000/api/mcp
# Landing page: http://localhost:3000License
Research corpus compiled from public FTC/Pedro Pathing sources. Use for educational and team programming purposes.
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
- Flicense-qualityDmaintenanceAn intelligent MCP server that enables AI agents to crawl, index, and semantically search official framework documentation using local RAG. It prevents hallucinations by providing precise, up-to-date documentation excerpts directly into the AI's context window.Last updated1
- Alicense-qualityBmaintenanceAgent-safe code retrieval MCP server that indexes repositories and provides semantic search, file navigation, call graph analysis, and bounded file reading tools for coding agents.Last updated3,814,6963MIT
- AlicenseAqualityCmaintenanceMCP server that injects verified FTC documentation and code examples into AI assistants, enabling teams to write correct, competition-ready Java robot code through natural language.Last updated3212MIT
- AlicenseAqualityBmaintenanceAn MCP server that indexes reference repositories and provides tools for AI coding agents to retrieve lossless code context, enabling reasoning over codebases larger than the agent's context window.Last updated82Apache 2.0
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
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/david-constantinescu/ftc-knowledge-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server