How to Check if MCP Server is Configured in Cursor
How to Check if MCP Server is Configured in Cursor
Quick Check Methods
Method 1: Check Cursor Settings UI
- Open Cursor Settings
- Press
Cmd + ,(Mac) orCtrl + ,(Windows/Linux) - Or: Cursor → Settings
- Press
- Search for “MCP” or “Model Context Protocol”
- In the settings search bar, type:
MCP - Look for a section about “Model Context Protocol” or “MCP Servers”
- In the settings search bar, type:
- Check if “government-data” is listed
- If you see a server named “government-data”, it’s configured!
- If not, you need to add it (see below)
Method 2: Check Settings JSON
- Open Command Palette
- Press
Cmd + Shift + P(Mac) orCtrl + Shift + P(Windows/Linux)
- Press
-
Type:
Preferences: Open User Settings (JSON) - Look for
mcpServerssection:{ "mcpServers": { "government-data": { "command": "python3", "args": ["/Users/nickjackolaisen/Documents/GitHub/BI/mcp-servers/government-data/server.py"], "env": { "CENSUS_API_KEY": "541100b6baa56ca3bafeffa63e80ba1f10d34" } } } }
Method 3: Test if It Works
Try asking me:
- “Fetch business startup data for 2023”
- “Get population data for California”
If I can call the MCP tools, it’s configured! ✅
If I can’t, I’ll use the direct client (which still works, but MCP is better).
If It’s NOT Configured
Option A: Use Cursor Settings UI
- Open Settings (
Cmd + ,) - Search for “MCP”
- Find “Model Context Protocol” section
- Click “Add Server” or “+”
- Add this configuration:
{
"name": "government-data",
"command": "python3",
"args": [
"/Users/nickjackolaisen/Documents/GitHub/BI/mcp-servers/government-data/server.py"
],
"env": {
"CENSUS_API_KEY": "541100b6baa56ca3bafeffa63e59e80ba1f10d34"
}
}
Option B: Edit Settings JSON
- Open Command Palette (
Cmd + Shift + P) - Type:
Preferences: Open User Settings (JSON) - Add the
mcpServerssection (see Method 2 above) - Save and restart Cursor
After Configuration
- Restart Cursor completely (close and reopen)
- Test it: Ask me to fetch data
- Check Cursor’s MCP logs if it doesn’t work (usually in Developer Tools or Console)
Current Status
Right now, I can still fetch data using the direct client (which I just did for California population). But with MCP configured, I can:
- Fetch data faster
- Do it automatically without you running scripts
- Access it seamlessly during content creation