Back to MCP Servers
🔌

graphlit-mcp-server

MITAPI key required

📇 ☁️ - Ingest anything from Slack, Discord, websites, Google Drive, Linear or GitHub into a Graphlit project - and then search and retrieve relevant knowledge within an MCP client like Cursor, Windsu

TypeScriptDev Tools

Install

npx -y in

Required environment variables

GRAPHLIT_JWT_SECRETSet in your MCP config
SLACK_BOT_TOKENSet in your MCP config
DISCORD_BOT_TOKENSet in your MCP config
TWITTER_TOKENSet in your MCP config
GOOGLE_EMAIL_REFRESH_TOKENSet in your MCP config
GOOGLE_EMAIL_CLIENT_SECRETSet in your MCP config
LINEAR_API_KEYSet in your MCP config
GITHUB_PERSONAL_ACCESS_TOKENSet in your MCP config
JIRA_TOKENSet in your MCP config
NOTION_API_KEYSet in your MCP config

claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "graphlit-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "in"
      ],
      "env": {
        "GRAPHLIT_JWT_SECRET": "<YOUR_GRAPHLIT_JWT_SECRET>",
        "SLACK_BOT_TOKEN": "<YOUR_SLACK_BOT_TOKEN>",
        "DISCORD_BOT_TOKEN": "<YOUR_DISCORD_BOT_TOKEN>",
        "TWITTER_TOKEN": "<YOUR_TWITTER_TOKEN>",
        "GOOGLE_EMAIL_REFRESH_TOKEN": "<YOUR_GOOGLE_EMAIL_REFRESH_TOKEN>",
        "GOOGLE_EMAIL_CLIENT_SECRET": "<YOUR_GOOGLE_EMAIL_CLIENT_SECRET>",
        "LINEAR_API_KEY": "<YOUR_LINEAR_API_KEY>",
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_GITHUB_PERSONAL_ACCESS_TOKEN>",
        "JIRA_TOKEN": "<YOUR_JIRA_TOKEN>",
        "NOTION_API_KEY": "<YOUR_NOTION_API_KEY>"
      }
    }
  }
}

Add this to your Claude Desktop config file. Find it at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS.

What this does

graphlit-mcp-server exposes a set of tools to Claude over the Model Context Protocol. After you add it to claude_desktop_config.json (snippet above) and restart Claude Desktop, those tools become callable inside any conversation. That makes it useful when you want Claude to reach into your developer tooling without copy-pasting context every turn.

Requirements

This server needs the following environment variables to be set before it can run:

GRAPHLIT_JWT_SECRET
SLACK_BOT_TOKEN
DISCORD_BOT_TOKEN
TWITTER_TOKEN
GOOGLE_EMAIL_REFRESH_TOKEN
GOOGLE_EMAIL_CLIENT_SECRET
LINEAR_API_KEY
GITHUB_PERSONAL_ACCESS_TOKEN
JIRA_TOKEN
NOTION_API_KEY

Set these via the env object in your MCP config (see claude_desktop_config.json snippet above).

Common use cases

  • Drive your build, test, lint, or deploy commands from a chat session
  • Pull CI status, commit metadata, or PR review state into context
  • Inspect or scaffold project boilerplate without leaving Claude