Metadata-Version: 2.4
Name: universal-mcp-applications
Version: 0.1.23
Summary: A Universal MCP Application: universal_mcp_applications
Project-URL: Homepage, https://github.com/universal-mcp/applications
Project-URL: Repository, https://github.com/universal-mcp/applications
Author-email: Manoj Bajaj <manoj@agentr.dev>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Requires-Dist: boto3>=1.38.32
Requires-Dist: browser-use-sdk>=2.0.4
Requires-Dist: dnspython>=2.4.0
Requires-Dist: e2b-code-interpreter>=1.2.1
Requires-Dist: elevenlabs>=2.14.0
Requires-Dist: fal-client>=0.5.9
Requires-Dist: firecrawl-py>=3.0.3
Requires-Dist: google-genai>=1.33.0
Requires-Dist: google-search-results>=2.4.2
Requires-Dist: gql[all]>=3.5.2
Requires-Dist: httpx-aiohttp>=0.1.8
Requires-Dist: markitdown[audio-transcription,az-doc-intel,docx,outlook,pdf,pptx,xls,xlsx]>=0.1.3
Requires-Dist: office365-rest-python-client>=2.6.2
Requires-Dist: openai>=1.75.0
Requires-Dist: pyairtable>=3.1.1
Requires-Dist: pytest-asyncio>=1.1.0
Requires-Dist: pytest>=8.3.5
Requires-Dist: pytest>=8.4.1
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: replicate>=1.0.6
Requires-Dist: requests>=2.31.0
Requires-Dist: resend>=2.10.0
Requires-Dist: twilio>=9.8.0
Requires-Dist: universal-mcp>=0.1.24rc21
Requires-Dist: yfinance>=0.2.66
Requires-Dist: youtube-transcript-api==1.2.2
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest<9.0.0,>=7.0.0; extra == 'test'
Description-Content-Type: text/markdown

# Universal MCP Applications

**A collection of 80+ installable application wrappers for the Universal MCP framework.**

This package provides a unified collection of all individual Universal MCP applications. It allows you to install every available tool at once and use them either as Python libraries in your own code.

## Installation

It is recommended to use `uv` for faster installation.

```bash
# Recommended using uv
uv pip install universal-mcp-applications

# Or using standard pip
pip install universal-mcp-applications
```

## Usage

The primary way to use the tools in this package is give below :-

### 1. As a Library

Each application can be imported and used directly in your Python projects. This is useful for integrating with other scripts or building more complex workflows.

**Example:**

```python
from universal_mcp_applications.falai import FalaiApp
from universal_mcp.utils import process_output

# Instantiate the application
# You may need to provide credentials via an integration
app = FalaiApp() 

# Call a method
result = app.some_method(param1="value1")

# Process and print the output
process_output(result)
```