UNPKG

@specweave/mcp-client

Version:

SpecWeave MCP client for Claude Code and other MCP-compatible tools (stdio transport)

48 lines (34 loc) 729 B
# @specweave/mcp-client SpecWeave MCP client for Claude Code and other MCP-compatible tools. ## Installation ```bash npm install -g @specweave/mcp-client ``` Or use with `npx` (no installation required): ```bash npx -y @specweave/mcp-client ``` ## Usage ### Get Your Access Token 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 ### Configure Claude Code Add to your `.mcp.json`: ```json { "mcpServers": { "specweave": { "command": "npx", "args": ["-y", "@specweave/mcp-client"], "env": { "SPECWEAVE_TOKEN": "your_token_here" } } } } ``` ## License MIT