@greatwebdevelopment/mcp-server
v2.1.0
Published
GWD MCP servers for Claude Code - task management, project tracking, and more
Maintainers
Readme
@greatwebdevelopment/mcp-server
MCP servers for Great Web Development — provides Claude Code with tools for task management, project tracking, time logging, and more.
Subdomain Structure
The platform uses subdomains per organization:
- GWD team:
https://gwd.greatwebdevelopment.com - Solo developers:
https://app.greatwebdevelopment.com - Client orgs:
https://<org>.greatwebdevelopment.com
Use your organization's subdomain as the GWD_API_URL.
Quick Start
Via npx (recommended)
Configure in ~/.claude.json:
{
"mcpServers": {
"gwd-cody": {
"command": "npx",
"args": ["-y", "@greatwebdevelopment/mcp-server", "cody"],
"env": {
"GWD_API_URL": "https://gwd.greatwebdevelopment.com",
"GWD_API_TOKEN": "your-token-here"
}
}
}
}Global install
npm install -g @greatwebdevelopment/mcp-server
gwd-mcp codyAvailable Servers
| Server | Role | Description | |--------|------|-------------| | cody | Lead Developer | Tasks, projects, time tracking (24 tools) | | sage | Project Manager | Clients, users, orgs, roadmaps (61 tools) | | penny | Account Manager | Jobs, leads, sales (32 tools) | | buzz | Marketing Manager | Blog posts, categories, analytics (22 tools) | | patch | DevOps Engineer | Sites, monitoring, debugging (65 tools) |
Usage
# Run a specific server
gwd-mcp cody
# List available servers
gwd-mcp --listEnvironment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| GWD_API_URL | Yes | Your org's subdomain URL (e.g. https://gwd.greatwebdevelopment.com) |
| GWD_API_TOKEN | Yes | Your API token (generate at https://<subdomain>.greatwebdevelopment.com/settings/api-tokens) |
Multi-Server Setup
You can run multiple servers simultaneously. Add each one to your ~/.claude.json:
{
"mcpServers": {
"gwd-cody": {
"command": "npx",
"args": ["-y", "@greatwebdevelopment/mcp-server", "cody"],
"env": {
"GWD_API_URL": "https://gwd.greatwebdevelopment.com",
"GWD_API_TOKEN": "your-token"
}
},
"gwd-sage": {
"command": "npx",
"args": ["-y", "@greatwebdevelopment/mcp-server", "sage"],
"env": {
"GWD_API_URL": "https://gwd.greatwebdevelopment.com",
"GWD_API_TOKEN": "your-token"
}
}
}
}Most developers only need cody. Enable additional servers as needed.
