parknyc-mcp
Enables managing NYC parking sessions, vehicles, and zones through MCP clients using the ParkNYC/Flowbird API.
README
parknyc-mcp
MCP server for ParkNYC (Flowbird) -- manage your NYC parking sessions, vehicles, and zones from any MCP client (Claude Code, Claude Desktop, etc.).
Note: The Flowbird consumer API is undocumented. This server was built by reverse-engineering the ParkNYC web app JavaScript bundles. No public API docs exist.
Setup
1. Install and build
git clone <repo-url> parknyc-mcp
cd parknyc-mcp
npm install
npm run build
2. Get your session cookies
The API authenticates via browser cookies. You need three: PHPSESSID, server, and user.
- Open my.nyc.flowbirdapp.com in Chrome and log in. Check "Keep me logged in" to extend cookie lifetime from ~30 minutes to days/weeks.
- Open DevTools (
Cmd+Option+I) and go to the Network tab - Filter for
customer/getand refresh the page - Click the
customer/getrequest - Under Request Headers, find the Cookie line
- Copy the full value -- it will look something like:
server=.apachen2; PHPSESSID=abc123...; user=def456...
Important: Do not include the
g_statecookie if present -- it contains JSON braces that break the config file. You only needPHPSESSID,server, anduser.
3. Configure your MCP client
Claude Code
Add a .mcp.json file to your project root:
{
"mcpServers": {
"parknyc": {
"command": "node",
"args": ["/path/to/parknyc-mcp/dist/index.js"],
"env": {
"PARKNYC_COOKIES": "server=.apachen2; PHPSESSID=your_session_id; user=your_user_cookie"
}
}
}
}
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"parknyc": {
"command": "node",
"args": ["/path/to/parknyc-mcp/dist/index.js"],
"env": {
"PARKNYC_COOKIES": "server=.apachen2; PHPSESSID=your_session_id; user=your_user_cookie"
}
}
}
}
4. Session expiry
Cookies expire periodically. If you checked "Keep me logged in", they should last days to weeks. Without it, sessions expire in ~30 minutes. When you start getting 401 errors, repeat step 2 to get fresh cookies and update your config.
Environment Variables
| Variable | Required | Description |
|---|---|---|
PARKNYC_COOKIES |
Yes | Full cookie string from browser (must include PHPSESSID, server, user) |
PARKNYC_LANGUAGE |
No | Language code for API responses (default: en) |
Available Tools
Read
| Tool | Description |
|---|---|
get_account |
Get your account profile (name, email, phone, address) |
get_active_sessions |
Get currently active/ongoing parking sessions |
get_parking_history |
Get past parking sessions with pagination |
get_order |
Get details of a specific parking order by ID |
get_vehicles |
List all registered vehicles |
search_zone |
Search for a parking zone by number |
get_zone_info |
Get zone details (facility ID or POS number) |
get_bookmarks |
Get saved/favorite parking locations |
get_payment_accounts |
Get payment methods on file (cards, e-wallet) |
Write
| Tool | Description |
|---|---|
start_parking |
Start a new parking session at a zone |
stop_parking |
Stop an active parking session early |
extend_parking |
Extend an active parking session |
cancel_parking |
Cancel a parking order |
add_vehicle |
Register a new vehicle |
delete_vehicle |
Remove a vehicle from your account |
add_bookmark |
Save a parking zone as a favorite |
delete_bookmark |
Remove a saved favorite |
Example Usage
> Show my parking history from this week
> Do I have any active parking sessions?
> What vehicles are on my account?
> Search for zone 12345
> How much have I spent on parking this month?
> Start 15 minutes of parking at zone 12345 with my car
How It Works
The Flowbird/ParkNYC web app at my.nyc.flowbirdapp.com is a PHP-backed Angular SPA. This MCP server mimics the browser's API calls:
- Auth: Three cookies (
PHPSESSIDfor PHP session,serverfor load balancer affinity,userfor the auth identity token) - Headers:
X-MPP-Brand: parknycon every request - Params:
platform=nyc,version=2.0.21+1792, andrt=<timestamp>on every request - History: Uses
/api/search/order/withx-api-caller: customerheader - Parking: Two-step flow --
order/create(proposal) thenorder/confirm(payment)
Limitations
- No programmatic login: The login endpoint requires reCAPTCHA, so cookies must be obtained manually from a browser session
- Cookie expiry: PHP sessions and the
usercookie expire; you'll need to refresh them periodically - Start parking: The
start_parkingtool needs the zone'susertypevalue which varies by zone. This is still being refined and may not work for all zones - Rate limits: Rapid API calls may trigger 503 responses from the server
License
MIT
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。