planwire-mcp
The PlanWire MCP server provides tools to search, explore, and retrieve UK planning application data:
Search planning applications (
search_planning_applications): Search by keyword, council ID, postcode, application status (Pending/Approved/Refused/Withdrawn), type (e.g. Householder, Full, Listed Building), or date range — with pagination and result limits.Find nearby planning applications (
nearby_planning_applications): Locate applications within a specified radius of a given latitude/longitude (WGS84) coordinate.Get a specific planning application (
get_planning_application): Fetch full details of a single application by its unique PlanWire ID.List covered councils (
list_councils): Retrieve all UK local planning authorities (councils) covered by PlanWire, along with their IDs for use in searches.
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., "@planwire-mcpSearch for recent planning applications in Camden"
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.
PlanWire MCP Server
Use UK planning application data inside Claude, Cursor, and any MCP client.
PlanWire exposes fresh, normalised UK planning application data through a public API. This MCP server wraps that API as agent tools so an assistant can search applications, inspect a specific record, look near a location, and list supported councils without you writing API calls by hand.
Get a free sandbox API key at https://planwire.io/?utm_source=npm&utm_medium=mcp_readme&utm_campaign=mcp.
What MCP Is
Model Context Protocol (MCP) is a standard way for AI tools to call external services. You run this package locally through npx; it talks to PlanWire using your own API key and returns structured planning data to the MCP client.
This server uses stdio transport. It does not store credentials or run a hosted proxy.
Related MCP server: Dilix MCP
Install
You need Node.js 18+ and a PlanWire API key.
npx -y planwire-mcpThe server expects PLANWIRE_API_KEY in the environment. Optional: set PLANWIRE_API_BASE to override the default https://api.planwire.io.
Claude Desktop
Add this to claude_desktop_config.json:
{
"mcpServers": {
"planwire": {
"command": "npx",
"args": ["-y", "planwire-mcp"],
"env": {
"PLANWIRE_API_KEY": "your_planwire_key_here"
}
}
}
}Restart Claude Desktop after saving the config.
Claude Code
Add this to your project .mcp.json:
{
"mcpServers": {
"planwire": {
"command": "npx",
"args": ["-y", "planwire-mcp"],
"env": {
"PLANWIRE_API_KEY": "your_planwire_key_here"
}
}
}
}Cursor
Add the same server command in Cursor's MCP settings:
{
"mcpServers": {
"planwire": {
"command": "npx",
"args": ["-y", "planwire-mcp"],
"env": {
"PLANWIRE_API_KEY": "your_planwire_key_here"
}
}
}
}Tools
Tool | What it does |
| Search by keyword, council, postcode, status, type, or date range. |
| Find applications near a latitude/longitude point. |
| Fetch one application by PlanWire application id. |
| List covered councils and their IDs. |
Example Prompts
"Search PlanWire for recent planning applications in Camden."
"Find refused householder extensions in OX1 from the last year."
"What planning applications are within 1km of 51.5074, -0.1278?"
"List the councils PlanWire covers."
"Find planning applications mentioning HMOs in Manchester."
Limits And Pricing
Free sandbox keys are suitable for testing and are capped on daily calls and result size. Paid plans increase limits for production use.
Pricing: https://planwire.io/?utm_source=npm&utm_medium=mcp_readme&utm_campaign=mcp#pricing
Troubleshooting
If the tool says PLANWIRE_API_KEY is not set, add your key to the MCP client config and restart the client.
If PlanWire returns 401, check that the key is correct and active.
If PlanWire returns 429, the key has reached its rate limit. Use fewer calls or upgrade at https://planwire.io/?utm_source=npm&utm_medium=mcp_readme&utm_campaign=mcp#pricing.
Development
npm install
npm run build
npm startMIT licensed. Built by PlanWire: https://planwire.io/?utm_source=npm&utm_medium=mcp_readme&utm_campaign=mcp
Maintenance
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/beshogun/planwire-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server