Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/linear-mcp

src/index.ts

28 lines · 659 B · TypeScript
import {
	LINEAR_MCP_NAME,
	LINEAR_MCP_URL,
	linearMcpSetupMessage,
	isLinearMcpConnected,
} from './mcp.ts'

export default async function linearMcpOverview() {
	return {
		package: '@kody/linear-mcp',
		preferred: 'mcp',
		mcp: {
			name: LINEAR_MCP_NAME,
			url: LINEAR_MCP_URL,
			connected: isLinearMcpConnected(),
			setup: linearMcpSetupMessage(),
		},
		oauthApiFallback: {
			package: '@kody/linear',
			publicUrl: 'https://kody.codes/@kody/linear',
		},
		exports: ["smoke-test","list-issues"],
		notes: [
			'This package wraps kody.mcp["linear"]. The MCP server name stays linear.',
			'For OAuth or API-key helpers, use @kody/linear.',
		],
	}
}