OpenGolfAPI MCP Server
Enables AI agents to search and retrieve detailed information about US golf courses, including course details, tees, climate, and nearby points of interest.
README
@opengolfapi/mcp-server
Open MCP server for AI agents to query the OpenGolfAPI dataset (14,708 US golf courses). All data is ODbL licensed and open.
All requests go through the public API at https://api.opengolfapi.org. With an optional OPENGOLFAPI_KEY, requests authenticate as your tier and unlock higher rate limits.
Install
npm install -g @opengolfapi/mcp-server
Configure
Add to your MCP client config:
{
"mcpServers": {
"opengolfapi": {
"command": "opengolfapi-mcp"
}
}
}
API keys (optional)
Optional: higher rate limits with a free key
Without a key, the MCP server uses anonymous access (1,000 requests/day per IP).
Get a free key at https://courses.opengolfapi.org/api-keys (~30 seconds, no card), then set:
export OPENGOLFAPI_KEY=ogapi_yourkeyhere
In Claude Desktop's MCP config, add the env var to the server entry:
{
"mcpServers": {
"opengolfapi": {
"command": "npx",
"args": ["@opengolfapi/mcp-server"],
"env": { "OPENGOLFAPI_KEY": "ogapi_yourkeyhere" }
}
}
}
Donor tiers raise the daily limit further (10k / 50k / 250k / 1M).
Tools
search_courses(query, state?, lat?, lng?, radius_mi?)— find courses by name, state, or locationget_course(id)— full course record with scorecard (par + handicap index per hole)get_tees(id)— all tee sets with ratings, slopes, and yardagesget_climate(id)— monthly climate normals for the course locationget_nearby(id)— nearby POIs (hotels, restaurants, airports)
Telemetry
Optional: set SENTRY_DSN env var to send errors to your own Sentry instance.
We do not collect telemetry from end users — this is opt-in for the operator
running the server.
{
"mcpServers": {
"opengolfapi": {
"command": "npx",
"args": ["@opengolfapi/mcp-server"],
"env": {
"OPENGOLFAPI_KEY": "ogapi_yourkeyhere",
"SENTRY_DSN": "https://<key>@o<org>.ingest.sentry.io/<project>"
}
}
}
}
When SENTRY_DSN is unset the SDK is a complete no-op — nothing is initialized
and no network calls are made.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.