Go to file
Gregory Gauthier 83ec950df7 first commit
2026-04-08 12:11:04 +01:00
config first commit 2026-04-08 12:11:04 +01:00
mcps first commit 2026-04-08 12:11:04 +01:00
skills first commit 2026-04-08 12:11:04 +01:00
.gitignore first commit 2026-04-08 12:11:04 +01:00
.mcp.json first commit 2026-04-08 12:11:04 +01:00
README.md first commit 2026-04-08 12:11:04 +01:00

Claude Tools

Overview

A collection of Claude skills, and "Model Context Protocol" servers, that are useful to the functional quality team, or anyone else interested in using some of Claude's more exotic capabilities.

Requirements

  • Python 3.10+
  • Node.js (for filesystem and playwright MCPs)
  • Poetry (for Python-based MCPs)
  • Claude Desktop and/or Claude Code

Structure

claude-tools/
     |-- .claude/            Claude Code project settings
     |-- .mcp.json           MCP server registration for Claude Code
     |-- config/             Config files for Claude Desktop (~/.config/Claude/)
     |-- mcps/               MCP servers
     |     |-- dicom_mcp/        DICOM medical imaging inspection (17 read-only tools)
     |     |-- filesystem_mcp/   File system operations via @cyanheads/filesystem-mcp-server
     |     |-- open_meteo_mcp/   Global weather data via the Open-Meteo API
     |     |-- playwright_mcp/   Browser automation via Playwright
     |     |-- selenium_mcp/     Browser automation via Selenium WebDriver
     |-- skills/              Skill packages
           |-- artifacts-builder/       Build multi-component HTML artifacts with React, Tailwind, shadcn/ui
           |-- document-skills/         Document creation and manipulation
           |     |-- docx/                  Word document creation, editing, and analysis
           |     |-- pdf/                   PDF extraction, creation, merging, splitting, and forms
           |     |-- pptx/                  PowerPoint creation, editing, and analysis
           |     |-- xlsx/                  Spreadsheet creation, analysis, and formula support
           |-- mcp-builder/             Guide for building MCP servers (Python FastMCP / Node SDK)
           |-- skill-creator/           Guide for creating new Claude Code skills
           |-- webapp-testing/          Test local web applications with Playwright scripts

Setup

Claude Code

The .mcp.json at the project root registers all MCP servers. Opening this project in Claude Code will make them available. The .claude/settings.local.json enables all servers and registers skill paths.

Claude Desktop

Copy (or symlink) config/claude_desktop_config.json to your Claude Desktop config directory:

cp config/claude_desktop_config.json ~/Library/Application\ Support/Claude/claude_desktop_config.json

Claude Docs

Skills

MCPs