claude-office-skills/mcp-hub
Access 1200+ AI Agent tools via Model Context Protocol (MCP)
npx skills add https://github.com/claude-office-skills/skills --skill mcp-hub
This skill provides access to 1200+ MCP (Model Context Protocol) servers - standardized tools that extend AI capabilities. Connect Claude to filesystems, databases, APIs, and document processing tools.
Example prompts:
Claude ←→ MCP Server ←→ External Resource
(Protocol) (Files, APIs, DBs)
| Server | Function | Stars |
|--------|----------|-------|
| filesystem | Read/write local files | Official |
| google-drive | Access Google Docs/Sheets | 5k+ |
| puppeteer | Browser automation, PDF gen | 10k+ |
| sqlite | Database queries | Official |
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/documents"
]
},
"google-drive": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-google-drive"]
}
}
}
Browse available servers:
# MCP tools become available to Claude automatically
# Example: filesystem MCP provides these tools:
# read_file(path) - Read file contents
# write_file(path, content) - Write to file
# list_directory(path) - List directory contents
# search_files(query) - Search for files
# Install required dependencies
pip install python-docx openpyxl python-pptx reportlab jinja2
Take claude-office-skills/mcp-hub from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip.
Without those the skill loads but fails at the first command.