mq-mcp 0.1.4

Markdown Query - MCP server implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod server;

use tracing_subscriber::EnvFilter;

#[tokio::main]
async fn main() -> miette::Result<()> {
    tracing_subscriber::fmt()
        .with_env_filter(EnvFilter::from_default_env())
        .with_thread_names(true)
        .with_target(true)
        .with_line_number(true)
        .init();

    server::start().await
}