Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.09 KB

DEVELOPMENT.md

File metadata and controls

61 lines (40 loc) · 1.09 KB

Development

To develop locally:

# Clone the repository
git clone https://github.com/tacticlaunch/mcp-linear.git
cd mcp-linear

# Install dependencies
npm install

# Run in development mode
npm run dev -- --token YOUR_LINEAR_API_TOKEN

Inspecting the server

To inspect the server by @modelcontextprotocol/inspector:

npm run inspect -- -e LINEAR_API_TOKEN=YOUR_LINEAR_API_TOKEN

Extending the Server

To add new tools to the server:

  1. Follow the implementation guide in the TOOLS.md document
  2. Make sure to follow the established code structure in the src/ directory
  3. Update the documentation to reflect your changes

Publishing to npm

To publish this package to npm:

  1. Update the version in package.json
npm version patch  # or minor, or major
  1. Build the project
npm run build
  1. Make sure you've already logged in to npm
npm login
  1. Publish to npm
npm publish --access public
  1. For Smithery registry, you'll need to work with the Smithery team to get your server listed in their catalog.