Install
$ agentstack add mcp-aryn-ai-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Aryn Local MCP Server
Installation
Prerequisites
- Python 3.12 or higher. Install it here
- uv - Fast Python package installer and resolver
- An Aryn API key. You can create an account and receive a key for free here
- This MCP server works best in combination with a file system MCP server (see installation instructions below)
- An MCP server client like Claude Desktop (Recommended) or Claude Code
Filesystem MCP
The Aryn MCP server requires absolute file paths to pdfs you want processed as inputs, so it works best when paired with an MCP server that can automatically manage files on your computer. Here is how to install one for Claude Desktop:
More documentation for the filesystem MCP server can be found here.
One-Click Install for Claude Desktop (Claude Desktop only)
Instead of manually installing this MCP server, Claude Desktop allows for an easy one-click extension:
Download the extension: Retrieve the provided .dxt file from this repository, or download it for macos here and linux here.
Find the .dxt extension: Navigate to the folder where the file was downloaded and double click to install. Follow the installation steps when prompted
Restart Claude Desktop
Now you're ready to go!
For more details, refer to the Claude Desktop Extensions documentation.
Manual Installation
If you're manually installing this MCP server, you need to install uv first, which provides the uvx command. Install it here.
After installation, you'll have access to both uv and uvx commands. The uvx command is what you'll use to run this MCP server.
Next, add the following configuration to your MCP client config file
{
"mcpServers": {
"Aryn Local MCP Server": {
"command": "uvx",
"args": [
"aryn-mcp-server"
],
"env": {
"ARYN_API_KEY": "YOUR_ARYN_API_KEY",
"ARYN_MCP_OUTPUT_DIR": ""
}
}
}
}
For client specific config implementation, see below:
Troubleshooting
If you encounter spawn uvx ENOENT errors:
- Verify uv installation: Run
which uvxin your terminal to find the correct path
- Use the full path to uv: Replace
"command": "uvx"with"command": ""
If you encounter file permissions errors, ensure that the path is expanded out and passed, MCP client tend to treat them as literal directory names. For specific issues:
- Input Directory: Ensure that the filesystem connector has access to the directory, and it is read accessible.
- Output Directory: Ensure that the directory is write accessible.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: aryn-ai
- Source: aryn-ai/mcp-server
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.