Stop Fighting Outdated Documentation

Give Cursor / Claude Code / OpenAI the right documentation at the right time. instadocs automatically provides version-specific docs for your dependencies, preventing deprecated API usage and keeping your code current.

❌ The Problem

Your LLM suggests outdated code because it doesn't have access to version-specific documentation:

// package.json
{
  "dependencies": {
    "express": "^4.18.0"
  }
}

// Your LLM suggests this (Express 3.x style):
const express = require('express');
const app = express();

// ❌ Deprecated in Express 4.x!
app.configure('development', function() {
  app.use(express.errorHandler());
});

✅ With instadocs

Your LLM gets the exact documentation for Express 4.18.0 and suggests modern, correct code:

// instadocs knows you're using Express 4.18.0
const express = require('express');
const app = express();

// ✅ Modern Express 4.x approach
if (process.env.NODE_ENV === 'development') {
  app.use(require('errorhandler')());
}

// ✅ Uses current middleware patterns
app.use(express.json());
app.use(express.urlencoded({ extended: true }));

Get Started in 2 Minutes

1

Install the MCP Server

$ npm install -g @instadocs/mcp-server
2

Configure Your mcp.json

// Add to your MCP settings
{
  "mcpServers": {
    "instadocs": {
      "command": "instadocs-mcp",
      "args": ["--project-root", "."]
    }
  }
}
3

Code with Confidence

Your LLM now has access to version-specific documentation for all your dependencies. Ask it to implement features, refactor code, or add new packages—it will always use the right APIs.

Ready to Upgrade Your Codegen Experience?

Eliminate deprecated code suggestions forever.