MCP Setup: Cline
1 min read
Connect Made For Law's probate data to Cline (VS Code AI extension).
Prerequisites
- A Made For Law Pro subscription with an API key
- VS Code with the Cline extension installed
Configuration
Cline stores MCP configuration in its VS Code settings. Open the Cline MCP settings:
- Open VS Code Settings (Cmd+, on macOS, Ctrl+, on Windows/Linux)
- Search for "cline.mcpServers"
- Click Edit in settings.json
Add the Made For Law server:
json
{
"cline.mcpServers": {
"madeforlaw": {
"command": "npx",
"args": ["-y", "@madeforlaw/mcp-server"],
"env": {
"MFL_API_KEY": "your-api-key-here"
}
}
}
}Alternatively, create a .vscode/mcp.json file in your project:
json
{
"servers": {
"madeforlaw": {
"command": "npx",
"args": ["-y", "@madeforlaw/mcp-server"],
"env": {
"MFL_API_KEY": "your-api-key-here"
}
}
}
}Verify
After reloading VS Code, open the Cline panel and ask:
What are the executor fees in Florida for a $800K estate?Troubleshooting
"Server not connected" — Reload VS Code window (Cmd+Shift+P > "Developer: Reload Window") after adding the configuration.
"Permission denied" — Ensure npx has network access. Some corporate firewalls block npm registry access.
Was this page helpful?