Claude TypeScript MCP ServersServer

ukkz
GitHub
developmentmodel context protocolMCP

Loading subscription status...

πŸ’‘ Description

A collection of Model Context Protocol (MCP) servers for software developers using LLM, enhancing development capabilities through integrated tools like Brave Search, Git, Shell commands, and more without incurring API usage costs.

πŸ“ JSON Entries

{
  "mcpServers": [
    {
      "brave-search": {
        "env": {
          "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
        },
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/brave-search.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "filesystem": {
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/filesystem.ts",
          "/Users/username"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "git": {
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/git.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "github": {
        "env": {
          "GITHUB_TOKEN_WORK": "YOUR_WORK_ACCOUNT_TOKEN",
          "GITHUB_TOKEN_PERSONAL": "YOUR_PERSONAL_ACCOUNT_TOKEN",
          "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_DEFAULT_TOKEN"
        },
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/github.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "shell": {
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/shell.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "puppeteer": {
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/puppeteer.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    },
    {
      "fetch": {
        "env": {
          "CUSTOM_USER_AGENT": "YOUR_CUSTOM_USER_AGENT",
          "IGNORE_ROBOTS_TXT": "false"
        },
        "args": [
          "run",
          "/Users/username/Documents/claude-ts-mcps/src/fetch.ts"
        ],
        "command": "/Users/username/.bun/bin/bun"
      }
    }
  ]
}

πŸ› οΈ Tools

brave_local_searchbrave_web_search

⚑ Features

  • Web and local search via Brave Search API
  • File System operations
  • Git repository management
  • GitHub repository interaction
  • Shell command execution
  • Browser automation with Puppeteer
  • Content fetching and HTML to Markdown conversion