rust-research-mcp 0.6.6

A Rust-based Model Context Protocol (MCP) server for academic research paper access
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use vergen::EmitBuilder;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    EmitBuilder::builder()
        .build_date()
        .build_timestamp()
        .git_branch()
        .git_commit_date()
        .git_commit_timestamp()
        .git_sha(false) // full SHA, not short
        .git_dirty(false) // don't include untracked files
        .emit()?;

    Ok(())
}