Neovim's AI plugin ecosystem is growing fast. Plugins like avante.nvim and codecompanion.nvim support MCP, letting your AI assistant call external tools during coding sessions. Connect a DataFaucet MCP server and your Neovim AI can query your CRM, check deployment status, or pull analytics data without leaving the editor.
avante.nvim supports MCP servers via its configuration. Add your server in your plugin config:
require("avante").setup({
mcp = {
servers = {
["my-crm"] = {
url = "https://your-server.datafaucet.dev/sse",
headers = {
Authorization = "Bearer your-api-key",
},
},
},
},
})After restarting Neovim, avante will discover the tools from your MCP server and make them available in chat.
codecompanion.nvim also supports MCP tool connections:
require("codecompanion").setup({
adapters = {
mcp_servers = {
{
name = "my-crm",
url = "https://your-server.datafaucet.dev/sse",
headers = {
["Authorization"] = "Bearer your-api-key",
},
},
},
},
})For a plugin-agnostic approach, mcphub.nvim provides a standalone MCP client for Neovim:
require("mcphub").setup({
servers = {
{
name = "my-crm",
transport = "sse",
url = "https://your-server.datafaucet.dev/sse",
headers = { Authorization = "Bearer your-api-key" },
},
},
})Once connected, ask your AI assistant to use the tools:
> "Use my-crm to show deals closing this quarter"
The assistant calls your MCP server, gets structured data back, and presents it inline in the chat buffer.
Add as many servers as you need:
servers = {
["crm"] = {
url = "https://crm.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-1" },
},
["monitoring"] = {
url = "https://monitoring.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-2" },
},
["tickets"] = {
url = "https://tickets.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-3" },
},
}Popular choices for developers using Neovim with MCP:
Create your Neovim MCP server in 60 seconds.
Try with Neovim →{
"mcpServers": {
"neovim": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with the ID from your DataFaucet dashboard after creating your Neovim server.
Point DataFaucet at Neovim and get a working server in 60 seconds.
Create Neovim server free →After creating, add to Claude Desktop:
"neovim": {
"url": "https://datafaucet.dev/api/mcp/YOUR_ID/sse"
}Free plan includes 3 servers. Upgrade to Pro for unlimited →
A startup connected Stripe, Linear, Slack, Vercel, and PostHog to AI via MCP. Standup prep went from 15 minutes to one prompt.
Step-by-step guide to debugging MCP server connections. Fix SSE timeouts, tool discovery failures, auth errors, and protocol mismatches.
Top MCP servers for security teams: vulnerability scanners, SIEM dashboards, secrets management, compliance tools, and incident response via AI.
See how DataFaucet compares
Point at any URL. Get a working MCP server in 60 seconds. No API docs needed.
Works with ChatGPT, Claude, Cursor, Copilot, Windsurf, JetBrains, and any MCP client
Get notified when we add more AI integrations
Join 500+ builders. New templates, guides, and MCP tips. No spam.