kairn-cli 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +498 -9
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/src/registry/tools.json +322 -0
package/src/registry/tools.json
CHANGED
|
@@ -554,5 +554,327 @@
|
|
|
554
554
|
"install": {
|
|
555
555
|
"plugin_command": "/plugin install frontend-design@claude-plugins-official"
|
|
556
556
|
}
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"id": "sentry",
|
|
560
|
+
"name": "Sentry",
|
|
561
|
+
"description": "Error monitoring, performance tracking, and issue management for production applications.",
|
|
562
|
+
"category": "code_devtools",
|
|
563
|
+
"tier": 3,
|
|
564
|
+
"type": "mcp_server",
|
|
565
|
+
"auth": "api_key",
|
|
566
|
+
"best_for": [
|
|
567
|
+
"error-tracking",
|
|
568
|
+
"monitoring",
|
|
569
|
+
"debugging",
|
|
570
|
+
"production"
|
|
571
|
+
],
|
|
572
|
+
"install": {
|
|
573
|
+
"mcp_config": {
|
|
574
|
+
"sentry": {
|
|
575
|
+
"command": "npx",
|
|
576
|
+
"args": [
|
|
577
|
+
"-y",
|
|
578
|
+
"@sentry/mcp-server"
|
|
579
|
+
],
|
|
580
|
+
"env": {
|
|
581
|
+
"SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}"
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"env_vars": [
|
|
587
|
+
{
|
|
588
|
+
"name": "SENTRY_AUTH_TOKEN",
|
|
589
|
+
"description": "Sentry auth token (Settings > Auth Tokens)"
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"signup_url": "https://sentry.io/signup/"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"id": "vercel",
|
|
596
|
+
"name": "Vercel",
|
|
597
|
+
"description": "Deploy, manage, and monitor Vercel projects and serverless functions.",
|
|
598
|
+
"category": "data_infrastructure",
|
|
599
|
+
"tier": 3,
|
|
600
|
+
"type": "mcp_server",
|
|
601
|
+
"auth": "api_key",
|
|
602
|
+
"best_for": [
|
|
603
|
+
"deployment",
|
|
604
|
+
"hosting",
|
|
605
|
+
"serverless",
|
|
606
|
+
"vercel"
|
|
607
|
+
],
|
|
608
|
+
"install": {
|
|
609
|
+
"mcp_config": {
|
|
610
|
+
"vercel": {
|
|
611
|
+
"command": "npx",
|
|
612
|
+
"args": [
|
|
613
|
+
"-y",
|
|
614
|
+
"@vercel/mcp-server"
|
|
615
|
+
],
|
|
616
|
+
"env": {
|
|
617
|
+
"VERCEL_TOKEN": "${VERCEL_TOKEN}"
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
"env_vars": [
|
|
623
|
+
{
|
|
624
|
+
"name": "VERCEL_TOKEN",
|
|
625
|
+
"description": "Vercel personal access token (Settings > Tokens)"
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"signup_url": "https://vercel.com/account/tokens"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"id": "docker",
|
|
632
|
+
"name": "Docker Toolkit",
|
|
633
|
+
"description": "Build, run, and manage Docker containers and images.",
|
|
634
|
+
"category": "data_infrastructure",
|
|
635
|
+
"tier": 3,
|
|
636
|
+
"type": "mcp_server",
|
|
637
|
+
"auth": "none",
|
|
638
|
+
"best_for": [
|
|
639
|
+
"containers",
|
|
640
|
+
"docker",
|
|
641
|
+
"devops",
|
|
642
|
+
"infrastructure"
|
|
643
|
+
],
|
|
644
|
+
"install": {
|
|
645
|
+
"mcp_config": {
|
|
646
|
+
"docker": {
|
|
647
|
+
"command": "npx",
|
|
648
|
+
"args": [
|
|
649
|
+
"-y",
|
|
650
|
+
"@docker/mcp-server"
|
|
651
|
+
]
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"id": "chrome-devtools",
|
|
658
|
+
"name": "Chrome DevTools",
|
|
659
|
+
"description": "Browser debugging, network inspection, and performance profiling.",
|
|
660
|
+
"category": "browser_automation",
|
|
661
|
+
"tier": 3,
|
|
662
|
+
"type": "plugin",
|
|
663
|
+
"auth": "none",
|
|
664
|
+
"best_for": [
|
|
665
|
+
"debugging",
|
|
666
|
+
"frontend",
|
|
667
|
+
"web-dev",
|
|
668
|
+
"performance"
|
|
669
|
+
],
|
|
670
|
+
"install": {
|
|
671
|
+
"plugin_command": "/plugin install chrome-devtools@claude-plugins-official"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "sqlite",
|
|
676
|
+
"name": "SQLite",
|
|
677
|
+
"description": "Local SQLite database operations for development and prototyping.",
|
|
678
|
+
"category": "data_infrastructure",
|
|
679
|
+
"tier": 3,
|
|
680
|
+
"type": "mcp_server",
|
|
681
|
+
"auth": "none",
|
|
682
|
+
"best_for": [
|
|
683
|
+
"database",
|
|
684
|
+
"prototyping",
|
|
685
|
+
"local-dev",
|
|
686
|
+
"sql"
|
|
687
|
+
],
|
|
688
|
+
"install": {
|
|
689
|
+
"mcp_config": {
|
|
690
|
+
"sqlite": {
|
|
691
|
+
"command": "npx",
|
|
692
|
+
"args": [
|
|
693
|
+
"-y",
|
|
694
|
+
"@anthropic/mcp-server-sqlite"
|
|
695
|
+
]
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"id": "stripe",
|
|
702
|
+
"name": "Stripe",
|
|
703
|
+
"description": "Payment processing, subscription management, and billing operations.",
|
|
704
|
+
"category": "data_infrastructure",
|
|
705
|
+
"tier": 4,
|
|
706
|
+
"type": "mcp_server",
|
|
707
|
+
"auth": "api_key",
|
|
708
|
+
"best_for": [
|
|
709
|
+
"payments",
|
|
710
|
+
"billing",
|
|
711
|
+
"e-commerce",
|
|
712
|
+
"stripe"
|
|
713
|
+
],
|
|
714
|
+
"install": {
|
|
715
|
+
"mcp_config": {
|
|
716
|
+
"stripe": {
|
|
717
|
+
"command": "npx",
|
|
718
|
+
"args": [
|
|
719
|
+
"-y",
|
|
720
|
+
"@stripe/mcp-server"
|
|
721
|
+
],
|
|
722
|
+
"env": {
|
|
723
|
+
"STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}"
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"env_vars": [
|
|
729
|
+
{
|
|
730
|
+
"name": "STRIPE_SECRET_KEY",
|
|
731
|
+
"description": "Stripe secret key (Dashboard > Developers > API keys)"
|
|
732
|
+
}
|
|
733
|
+
],
|
|
734
|
+
"signup_url": "https://dashboard.stripe.com/apikeys"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"id": "memory",
|
|
738
|
+
"name": "Memory (Knowledge Graph)",
|
|
739
|
+
"description": "Persistent knowledge graph for storing entities, relations, and project context across sessions.",
|
|
740
|
+
"category": "reasoning",
|
|
741
|
+
"tier": 4,
|
|
742
|
+
"type": "mcp_server",
|
|
743
|
+
"auth": "none",
|
|
744
|
+
"best_for": [
|
|
745
|
+
"context-management",
|
|
746
|
+
"knowledge-base",
|
|
747
|
+
"memory",
|
|
748
|
+
"long-running"
|
|
749
|
+
],
|
|
750
|
+
"install": {
|
|
751
|
+
"mcp_config": {
|
|
752
|
+
"memory": {
|
|
753
|
+
"command": "npx",
|
|
754
|
+
"args": [
|
|
755
|
+
"-y",
|
|
756
|
+
"@anthropic/mcp-server-memory"
|
|
757
|
+
]
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"id": "e2b",
|
|
764
|
+
"name": "E2B Sandbox",
|
|
765
|
+
"description": "Secure cloud sandboxes for executing untrusted code and running experiments.",
|
|
766
|
+
"category": "code_devtools",
|
|
767
|
+
"tier": 4,
|
|
768
|
+
"type": "mcp_server",
|
|
769
|
+
"auth": "api_key",
|
|
770
|
+
"best_for": [
|
|
771
|
+
"code-execution",
|
|
772
|
+
"sandboxing",
|
|
773
|
+
"experiments",
|
|
774
|
+
"data-science"
|
|
775
|
+
],
|
|
776
|
+
"install": {
|
|
777
|
+
"mcp_config": {
|
|
778
|
+
"e2b": {
|
|
779
|
+
"command": "npx",
|
|
780
|
+
"args": [
|
|
781
|
+
"-y",
|
|
782
|
+
"@e2b/mcp-server"
|
|
783
|
+
],
|
|
784
|
+
"env": {
|
|
785
|
+
"E2B_API_KEY": "${E2B_API_KEY}"
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"env_vars": [
|
|
791
|
+
{
|
|
792
|
+
"name": "E2B_API_KEY",
|
|
793
|
+
"description": "E2B API key for cloud sandboxes"
|
|
794
|
+
}
|
|
795
|
+
],
|
|
796
|
+
"signup_url": "https://e2b.dev/dashboard"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"id": "gpt-researcher",
|
|
800
|
+
"name": "GPT Researcher",
|
|
801
|
+
"description": "Autonomous deep research agent for comprehensive topic investigation.",
|
|
802
|
+
"category": "search_research",
|
|
803
|
+
"tier": 5,
|
|
804
|
+
"type": "mcp_server",
|
|
805
|
+
"auth": "api_key",
|
|
806
|
+
"best_for": [
|
|
807
|
+
"deep-research",
|
|
808
|
+
"literature-review",
|
|
809
|
+
"investigation",
|
|
810
|
+
"analysis"
|
|
811
|
+
],
|
|
812
|
+
"install": {
|
|
813
|
+
"mcp_config": {
|
|
814
|
+
"gpt-researcher": {
|
|
815
|
+
"command": "npx",
|
|
816
|
+
"args": [
|
|
817
|
+
"-y",
|
|
818
|
+
"gpt-researcher-mcp"
|
|
819
|
+
],
|
|
820
|
+
"env": {
|
|
821
|
+
"OPENAI_API_KEY": "${OPENAI_API_KEY}"
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"env_vars": [
|
|
827
|
+
{
|
|
828
|
+
"name": "OPENAI_API_KEY",
|
|
829
|
+
"description": "OpenAI API key for GPT Researcher"
|
|
830
|
+
}
|
|
831
|
+
],
|
|
832
|
+
"signup_url": "https://platform.openai.com/api-keys"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"id": "jira",
|
|
836
|
+
"name": "Jira",
|
|
837
|
+
"description": "Issue tracking, sprint management, and project boards for Jira.",
|
|
838
|
+
"category": "communication",
|
|
839
|
+
"tier": 5,
|
|
840
|
+
"type": "mcp_server",
|
|
841
|
+
"auth": "oauth",
|
|
842
|
+
"best_for": [
|
|
843
|
+
"project-management",
|
|
844
|
+
"issue-tracking",
|
|
845
|
+
"agile",
|
|
846
|
+
"jira"
|
|
847
|
+
],
|
|
848
|
+
"install": {
|
|
849
|
+
"mcp_config": {
|
|
850
|
+
"jira": {
|
|
851
|
+
"command": "npx",
|
|
852
|
+
"args": [
|
|
853
|
+
"-y",
|
|
854
|
+
"@anthropic/mcp-server-jira"
|
|
855
|
+
],
|
|
856
|
+
"env": {
|
|
857
|
+
"JIRA_URL": "${JIRA_URL}",
|
|
858
|
+
"JIRA_EMAIL": "${JIRA_EMAIL}",
|
|
859
|
+
"JIRA_API_TOKEN": "${JIRA_API_TOKEN}"
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
"env_vars": [
|
|
865
|
+
{
|
|
866
|
+
"name": "JIRA_URL",
|
|
867
|
+
"description": "Jira instance URL (e.g., https://yourteam.atlassian.net)"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "JIRA_EMAIL",
|
|
871
|
+
"description": "Your Jira account email"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"name": "JIRA_API_TOKEN",
|
|
875
|
+
"description": "Jira API token"
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"signup_url": "https://id.atlassian.com/manage-profile/security/api-tokens"
|
|
557
879
|
}
|
|
558
880
|
]
|