@specweave/mcp-client
Version:
SpecWeave MCP client for Claude Code and other MCP-compatible tools (stdio transport)
48 lines (34 loc) • 729 B
Markdown
SpecWeave MCP client for Claude Code and other MCP-compatible tools.
```bash
npm install -g @specweave/mcp-client
```
Or use with `npx` (no installation required):
```bash
npx -y @specweave/mcp-client
```
1. Log in to SpecWeave
2. Navigate to your account settings
3. Create a new MCP access token
4. Select your application and required scopes
5. Copy the generated token
Add to your `.mcp.json`:
```json
{
"mcpServers": {
"specweave": {
"command": "npx",
"args": ["-y", "@specweave/mcp-client"],
"env": {
"SPECWEAVE_TOKEN": "your_token_here"
}
}
}
}
```
MIT