Skip to content

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

Package listing

@kody/sentry-mcp

src/index.ts

28 lines · 666 B · TypeScript
import {
	SENTRY_MCP_NAME,
	SENTRY_MCP_URL,
	sentryMcpSetupMessage,
	isSentryMcpConnected,
} from './mcp.ts'

export default async function sentryMcpOverview() {
	return {
		package: '@kody/sentry-mcp',
		preferred: 'mcp',
		mcp: {
			name: SENTRY_MCP_NAME,
			url: SENTRY_MCP_URL,
			connected: isSentryMcpConnected(),
			setup: sentryMcpSetupMessage(),
		},
		oauthApiFallback: {
			package: '@kody/sentry',
			publicUrl: 'https://kody.codes/@kody/sentry',
		},
		exports: ["smoke-test","list-organizations"],
		notes: [
			'This package wraps kody.mcp["sentry"]. The MCP server name stays sentry.',
			'For OAuth or API-key helpers, use @kody/sentry.',
		],
	}
}