#!/usr/bin/env perl
use strict;
use warnings;

# PODNAME: mcp-ks
# ABSTRACT: Start the shared memory/skills MCP server

use Mojo::File qw(curfile);
use lib curfile->dirname->sibling('lib')->to_string;
use Mojolicious::Commands;

Mojolicious::Commands->start_app('MCP::Server::KnowledgeStore');

__END__

=pod

=encoding UTF-8

=head1 NAME

mcp-ks - Start the shared memory/skills MCP server

=head1 VERSION

version 0.001

=head1 AUTHOR

Wesley Schwengle <waterkip@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2026 by Wesley Schwengle.

This is free software, licensed under:

  The (three-clause) BSD License

=cut
