Doclasana.MCP

mustafasameturan/Doclasana.MCP

3.3

If you are the rightful owner of Doclasana.MCP and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Doclasana MCP Server allows developers to access documentation from the Doclasana platform directly within AI-powered IDEs.

Tools
3
Resources
0
Prompts
0

Doclasana MCP Server

NPM Version NPM Downloads License: MIT

Store your documents on Doclasana and access them directly from AI-powered IDEs like Cursor, Cline, and Windsurf.

Features

  • List and search your documents
  • View document contents
  • Secure API key authentication
  • Works with all MCP-compatible IDEs

Installation

Option 1: NPM (Recommended)

npm install -g doclasana-mcp-server

Option 2: From Source

git clone https://github.com/mustafasameturan/Doclasana.MCP.git
cd Doclasana.MCP
npm install
npm run build

Setup

1. Get Your API Key

Get your API key from Doclasana account settings.

2. Configure Your IDE

Cursor IDE

Add this to your MCP settings:

{
  "mcpServers": {
    "doclasana": {
      "command": "doclasana-mcp",
      "env": {
        "DOCLASANA_API_KEY": "your-api-key-here"
      }
    }
  }
}
From Source Installation

If you installed from source, use this:

{
  "mcpServers": {
    "doclasana": {
      "command": "node",
      "args": ["/path/to/Doclasana.MCP/dist/index.js"],
      "env": {
        "DOCLASANA_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Start Using

After configuration is complete, you can ask your AI assistant:

  • "List my documents"
  • "Search for documents about API"
  • "Get document with ID abc123"

Available Commands

  • list_documents - Lists all your documents with pagination
  • search_documents - Searches within document contents
  • get_document - Retrieves the full content of a specific document

Development

Commands

  • npm run build - Compile TypeScript
  • npm run dev - Run in development mode
  • npm start - Start the server
  • npm test - Run tests

Project Structure

src/
ā”œā”€ā”€ index.ts          # Main MCP server
└── global.d.ts       # Type definitions
dist/                 # Compiled output

License

MIT License - see file.

Support

For questions or issues, visit GitHub Issues.