all-in-mcp


Nameall-in-mcp JSON
Version 0.1.4 PyPI version JSON
download
home_pageNone
SummaryAn MCP (Model Context Protocol) server providing daily-use utility functions and academic paper search capabilities
upload_time2025-06-21 05:54:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
keywords academic iacr mcp model-context-protocol papers utilities
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # All-in-MCP

An MCP (Model Context Protocol) server that provides daily-use utility functions, including academic paper search capabilities.

## Features

### Daily Utilities

- **Academic Research**: IACR ePrint Archive paper search, download, and reading

### Paper Search Capabilities

- Search academic papers from IACR ePrint Archive
- Download PDF files
- Extract and read text content from papers
- Metadata extraction (authors, publication dates, abstracts)

## Quick Start

### Prerequisites

- Python 3.12 or higher
- UV package manager

## Installation

### Option 1: Install from PyPI (Recommended)

```bash
pip install all-in-mcp
```

### Installation

1. Clone this repository:

   ```bash
   git clone https://github.com/jiahaoxiang2000/all-in-mcp.git
   cd all-in-mcp
   ```

2. Install with UV:

   ```bash
   uv sync
   ```

### Running the Server

After installation, you can run the MCP server directly:

```bash
all-in-mcp
```

Or if you installed from source with UV:

```bash
uv run all-in-mcp
```

## Integration with MCP Clients

Add this server to your MCP client configuration. The server runs using stdio transport.
See detailed integration guide in [`docs/INTEGRATION.md`](docs/INTEGRATION.md).

Example configuration for Claude Desktop:

```json
{
  "mcpServers": {
    "all-in-mcp": {
      "command": "uv",
      "args": ["run", "all-in-mcp"],
      "cwd": "/path/to/all-in-mcp"
    }
  }
}
```

## Development

For development setup and contribution guidelines, see the [Development Guide](docs/development.md).

### Quick Development Setup

```bash
# Clone the repository
git clone https://github.com/jiahaoxiang2000/all-in-mcp.git
cd all-in-mcp

# Install with development dependencies
uv sync --extra dev

# Run tests
uv run pytest

# Run linting
uv run ruff check src/
uv run ruff format src/

# Type checking
uv run mypy src/all_in_mcp
```

### Releases

This project uses the existing release helper script for creating releases:

#### Using the Release Script

Use the release helper script to create a new version:

```bash
python scripts/release.py 0.1.2
```

This script will:

1. Update the version in `pyproject.toml`
2. Create a git commit
3. Create a git tag
4. Push the changes to trigger CI/CD

#### Manual Process

Alternatively, you can manually:

1. **Update version** in `pyproject.toml`:

   ```toml
   version = "0.1.2"  # Change this
   ```

2. **Commit and tag**:

   ```bash
   git add pyproject.toml
   git commit -m "Bump version to 0.1.2"
   git tag v0.1.2
   git push --follow-tags
   ```

### Debugging

For debugging, use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector):

```bash
npx @modelcontextprotocol/inspector uv --directory /path/to/all-in-mcp run all-in-mcp
```

## Documentation

Complete documentation is available in the [`docs/`](docs/) directory:

- **[API Reference](docs/api.md)** - Complete API documentation
- **[Installation Guide](docs/installation.md)** - Setup instructions
- **[IACR Integration](docs/iacr.md)** - Academic paper search details
- **[Development Guide](docs/development.md)** - Contributing guidelines
- **[PyPI Setup Guide](docs/pypi-setup.md)** - Publishing configuration
- **[Examples](docs/examples.md)** - Usage examples

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "all-in-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "academic, iacr, mcp, model-context-protocol, papers, utilities",
    "author": null,
    "author_email": "isomo <jiahaoxiang2000@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/5a/e8/89d010034e248a1875f86e008343454958274973326b8ddc40f43d472bdd/all_in_mcp-0.1.4.tar.gz",
    "platform": null,
    "description": "# All-in-MCP\n\nAn MCP (Model Context Protocol) server that provides daily-use utility functions, including academic paper search capabilities.\n\n## Features\n\n### Daily Utilities\n\n- **Academic Research**: IACR ePrint Archive paper search, download, and reading\n\n### Paper Search Capabilities\n\n- Search academic papers from IACR ePrint Archive\n- Download PDF files\n- Extract and read text content from papers\n- Metadata extraction (authors, publication dates, abstracts)\n\n## Quick Start\n\n### Prerequisites\n\n- Python 3.12 or higher\n- UV package manager\n\n## Installation\n\n### Option 1: Install from PyPI (Recommended)\n\n```bash\npip install all-in-mcp\n```\n\n### Installation\n\n1. Clone this repository:\n\n   ```bash\n   git clone https://github.com/jiahaoxiang2000/all-in-mcp.git\n   cd all-in-mcp\n   ```\n\n2. Install with UV:\n\n   ```bash\n   uv sync\n   ```\n\n### Running the Server\n\nAfter installation, you can run the MCP server directly:\n\n```bash\nall-in-mcp\n```\n\nOr if you installed from source with UV:\n\n```bash\nuv run all-in-mcp\n```\n\n## Integration with MCP Clients\n\nAdd this server to your MCP client configuration. The server runs using stdio transport.\nSee detailed integration guide in [`docs/INTEGRATION.md`](docs/INTEGRATION.md).\n\nExample configuration for Claude Desktop:\n\n```json\n{\n  \"mcpServers\": {\n    \"all-in-mcp\": {\n      \"command\": \"uv\",\n      \"args\": [\"run\", \"all-in-mcp\"],\n      \"cwd\": \"/path/to/all-in-mcp\"\n    }\n  }\n}\n```\n\n## Development\n\nFor development setup and contribution guidelines, see the [Development Guide](docs/development.md).\n\n### Quick Development Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/jiahaoxiang2000/all-in-mcp.git\ncd all-in-mcp\n\n# Install with development dependencies\nuv sync --extra dev\n\n# Run tests\nuv run pytest\n\n# Run linting\nuv run ruff check src/\nuv run ruff format src/\n\n# Type checking\nuv run mypy src/all_in_mcp\n```\n\n### Releases\n\nThis project uses the existing release helper script for creating releases:\n\n#### Using the Release Script\n\nUse the release helper script to create a new version:\n\n```bash\npython scripts/release.py 0.1.2\n```\n\nThis script will:\n\n1. Update the version in `pyproject.toml`\n2. Create a git commit\n3. Create a git tag\n4. Push the changes to trigger CI/CD\n\n#### Manual Process\n\nAlternatively, you can manually:\n\n1. **Update version** in `pyproject.toml`:\n\n   ```toml\n   version = \"0.1.2\"  # Change this\n   ```\n\n2. **Commit and tag**:\n\n   ```bash\n   git add pyproject.toml\n   git commit -m \"Bump version to 0.1.2\"\n   git tag v0.1.2\n   git push --follow-tags\n   ```\n\n### Debugging\n\nFor debugging, use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector):\n\n```bash\nnpx @modelcontextprotocol/inspector uv --directory /path/to/all-in-mcp run all-in-mcp\n```\n\n## Documentation\n\nComplete documentation is available in the [`docs/`](docs/) directory:\n\n- **[API Reference](docs/api.md)** - Complete API documentation\n- **[Installation Guide](docs/installation.md)** - Setup instructions\n- **[IACR Integration](docs/iacr.md)** - Academic paper search details\n- **[Development Guide](docs/development.md)** - Contributing guidelines\n- **[PyPI Setup Guide](docs/pypi-setup.md)** - Publishing configuration\n- **[Examples](docs/examples.md)** - Usage examples\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An MCP (Model Context Protocol) server providing daily-use utility functions and academic paper search capabilities",
    "version": "0.1.4",
    "project_urls": {
        "Documentation": "https://github.com/jiahaoxiang2000/all-in-mcp/tree/main/docs",
        "Homepage": "https://github.com/jiahaoxiang2000/all-in-mcp",
        "Issues": "https://github.com/jiahaoxiang2000/all-in-mcp/issues",
        "Repository": "https://github.com/jiahaoxiang2000/all-in-mcp"
    },
    "split_keywords": [
        "academic",
        " iacr",
        " mcp",
        " model-context-protocol",
        " papers",
        " utilities"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ffa11a5984b5cd95e9b4142c14c474bd8ef64cc71d6f89f2a80e0c9b059e874",
                "md5": "2335b91d685b2d311fbab539f7fc7d45",
                "sha256": "4ed72ce7cf39293a6728241db076a3b9eaec5f574139d63ce57de1709476214d"
            },
            "downloads": -1,
            "filename": "all_in_mcp-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2335b91d685b2d311fbab539f7fc7d45",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 11901,
            "upload_time": "2025-06-21T05:54:54",
            "upload_time_iso_8601": "2025-06-21T05:54:54.569888Z",
            "url": "https://files.pythonhosted.org/packages/0f/fa/11a5984b5cd95e9b4142c14c474bd8ef64cc71d6f89f2a80e0c9b059e874/all_in_mcp-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ae889d010034e248a1875f86e008343454958274973326b8ddc40f43d472bdd",
                "md5": "3260090c5ef785480517af2b826d7549",
                "sha256": "fe8e89cbc90bc071331c51f21ec47f3a7954bab025cba4f7191f3fd93adc5fa8"
            },
            "downloads": -1,
            "filename": "all_in_mcp-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "3260090c5ef785480517af2b826d7549",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 16584,
            "upload_time": "2025-06-21T05:54:56",
            "upload_time_iso_8601": "2025-06-21T05:54:56.044647Z",
            "url": "https://files.pythonhosted.org/packages/5a/e8/89d010034e248a1875f86e008343454958274973326b8ddc40f43d472bdd/all_in_mcp-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-06-21 05:54:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jiahaoxiang2000",
    "github_project": "all-in-mcp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "all-in-mcp"
}
        
Elapsed time: 1.86007s