Local Falcon MCP Server
Connects AI systems to Local Falcon API, enabling access to local SEO reporting tools including scan reports, trend analysis, keyword tracking, and competitor data through the Model Context Protocol.
Tools
listLocalFalconScanReports
Retrieves a list of all Scan Reports performed by your Local Falcon account.
listLocalFalconTrendReports
Retrieves a list of all Trend Reports performed by your Local Falcon account.
listLocalFalconAutoScans
Retrieves a list of all Auto Scans.
listAllLocalFalconLocations
Retrieves a list of all locations.
listLocalFalconLocationReports
Retrieves a list of all location reports.
getLocalFalconLocationReport
Retrieves a single location report. A location report looks like https://www.localfalcon.com/reports/location/view/c60c325a8665c4a where c60c325a8665c4a is the report key.
getLocalFalconReport
Retrieves a single Local Falcon scan report given a report key. Only reads the ai analysis of the returned report. Otherwise report the ai analysis is not present. Users can also enter the report key in the format of https://www.localfalcon.com/reports/view/0b38313fa35c37f where 0b38313fa35c37f is the report key.
getLocalFalconTrendReport
Retrieves a single Local Falcon trend report. A trend report looks like https://www.localfalcon.com/reports/trend/view/95290829819f6e8 where 95290829819f6e8 is the report key.
listLocalFalconKeywordReports
Retrieves a list of all keyword reports. A keyword report looks like https://www.localfalcon.com/reports/keyword/view/754ffcb0f309938 where 754ffcb0f309938 is the report key.
getLocalFalconRankingAtCoordinate
Retrieves search results at the specified coordinate point and gets ranking data for specified business.
getLocalFalconCampaignReport
Retrieves a full report of a Campaign from your Local Falcon account. Campaign reports look like https://www.localfalcon.com/campaigns/view/0ee3c5869f3fa13 where 0ee3c5869f3fa13 is the report_key.
listLocalFalconGuardReports
Retrieves a list of all Falcon Guard Reports within your Local Falcon account. This helps analyze the Google Business profile of a specific location.
getLocalFalconGuardReport
Retrieves a full report of a Falcon Guard Report from your Local Falcon account given a place_id.
getLocalFalconKeywordReport
Retrieves a single Local Falcon keyword report.
getLocalFalconGrid
A helper method to create a Local Falcon grid.
getLocalFalconGoogleBusinessLocations
Fetches Local Falcon Google Business locations.
getLocalFalconKeywordAtCoordinate
Retrieves search results at the specified coordinate point without any rank comparison data.
runLocalFalconFullGridSearch
Retrieves a full grid search using the passed keyword or search term to match against the specified business.
getLocalFalconCompetitorReports
Retrieves a list of all Competitor Reports within your Local Falcon account.
getLocalFalconCompetitorReport
Retrieves up to 20 competitor businesses from a specific Competitor Report from your Local Falcon account. Competitor reports look like https://www.localfalcon.com/reports/competitor/view/08116fb5331e258 where 08116fb5331e258 is the report_key.
listLocalFalconCampaignReports
Retrieves a list of all Location Reports within your Local Falcon account.
README
Local Falcon MCP Server
An MCP (Model Context Protocol) server for the Local Falcon API, implemented in TypeScript, using the official MCP SDK. This server exposes Local Falcon reporting capabilities as MCP tools, enabling integration with agentic AI systems and workflows.
Prerequisites
- Node.js (install the LTS version)
Getting Started in Claude Desktop
- Create a new directory for the MCP server and install the package.
mkdir lf-mcp
cd lf-mcp
npm i @local-falcon/mcp
- Copy the path to the installed npm module and add it to the args in the mcp.json file making sure to point to the index.js file under /dist.
- Add your API key to the env in the mcp.json file.
Running via STDIO
For MacOS/Unix use the following format:
{
"mcpServers": {
"local-falcon-mcp": {
"command": "node",
"args": ["/Users/YOUR_USERNAME/lf-mcp/node_modules/@local-falcon/mcp/dist/index.js"],
"env": {
"LOCALFALCON_API_KEY": "INSERT_YOUR_API_KEY_HERE"
}
}
}
}
For Windows use the following format:
{
"mcpServers": {
"local-falcon-mcp": {
"command": "node",
"args": ["C:\\Users\\YOUR_USERNAME\\lf-mcp\\node_modules\\@local-falcon\\mcp\\dist\\index.js"],
"env": {
"LOCALFALCON_API_KEY": "INSERT_YOUR_API_KEY_HERE"
}
}
}
}
Running via SSE via a STDIO Gateway
For all platforms use the following format:
{
"mcpServers": {
"local-falcon-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.localfalcon.com/sse?local_falcon_api_key=INSERT_YOUR_API_KEY_HERE"
]
}
}
}
Running via Claude Integrations (SSE)
If connecting to Claude integrations:
- name the server
Local Falcon MCP - add the following url: https://mcp.localfalcon.com/sse?local_falcon_api_key=YOUR_API_KEY_HERE
Tools List
- listLocalFalconScanReports: Retrieves a list of all Scan Reports performed by your Local Falcon account.
- listLocalFalconTrendReports: Retrieves a list of all Trend Reports performed by your Local Falcon account.
- listLocalFalconAutoScans: Retrieves a list of all Auto Scans.
- listAllLocalFalconLocations: Retrieves a list of all locations.
- listLocalFalconLocationReports: Retrieves a list of all location reports.
- getLocalFalconLocationReport: Retrieves a single location report. A location report looks like https://www.localfalcon.com/reports/location/view/c60c325a8665c4a where c60c325a8665c4a is the report key.
- getLocalFalconReport: Retrieves a single Local Falcon scan report given a report key. Only reads the ai analysis of the returned report. Otherwise report the ai analysis is not present. Users can also enter the report key in the format of https://www.localfalcon.com/reports/view/0b38313fa35c37f where 0b38313fa35c37f is the report key.
- getLocalFalconTrendReport: Retrieves a single Local Falcon trend report. A trend report looks like https://www.localfalcon.com/reports/trend/view/95290829819f6e8 where 95290829819f6e8 is the report key.
- listLocalFalconKeywordReports: Retrieves a list of all keyword reports. A keyword report looks like https://www.localfalcon.com/reports/keyword/view/754ffcb0f309938 where 754ffcb0f309938 is the report key.
- getLocalFalconKeywordReport: Retrieves a single Local Falcon keyword report.
- getLocalFalconGrid: A helper method to create a Local Falcon grid.
- getLocalFalconGoogleBusinessLocations: Fetches Local Falcon Google Business locations.
- getLocalFalconRankingAtCoordinate: Retrieves search results at the specified coordinate point and gets ranking data for specified business.
- getLocalFalconKeywordAtCoordinate: Retrieves search results at the specified coordinate point without any rank comparison data.
- runLocalFalconFullGridSearch: Retrieves a full grid search using the passed keyword or search term to match against the specified business.
- getLocalFalconCompetitorReports: Retrieves a list of all Competitor Reports within your Local Falcon account.
- getLocalFalconCompetitorReport: Retrieves up to 20 competitor businesses from a specific Competitor Report from your Local Falcon account.
- listLocalFalconCampaignReports: Retrieves a list of all Location Reports within your Local Falcon account.
- getLocalFalconCampaignReport: Retrieves a full report of a Campaign from your Local Falcon account.
- listLocalFalconGuardReports: Retrieves a list of all Falcon Guard Reports within your Local Falcon account.
- getLocalFalconGuardReport: Retrieves a full report of a Falcon Guard Report from your Local Falcon account given a place_id.
For developers
-
Build (necessary to run in local MCP host applications):
bun run build -
Run MCP Inspector:
bun run inspector -
Run MCP Server:
Run one of the following:
bun run start bun run start:sse bun run start:stdioNote: if sse is not specified, the server will default to stdio.
License
MIT
Acknowledgments
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。