MCP server for the Autoform API from Slovensko.Digital
Project description
Autoform MCP Server
Model Context Protocol (MCP) server for the Autoform service from Slovensko.Digital based on the API documentation.
Author: @alhafoudh
Features
- Search Slovak corporate bodies (companies, organizations) by name
- Search by registration number (IČO/CIN)
- Filter results to show only active (non-terminated) entities
- Returns detailed company information including addresses and tax IDs
Quick Start (Hosted Version)
The easiest way to use Autoform MCP is through our hosted version at https://autoform.fastmcp.app/mcp using Streamable HTTP mode. No installation required.
Getting Your API Token
To use the Autoform API, you need a private access token:
- Register for paid access at Slovensko.Digital Autoform
- After registration, you'll receive your private access token
Authentication
Pass your Autoform API token using one of these methods (in priority order):
- Authorization header (recommended):
Authorization: Bearer <token> - Custom header:
x-autoform-private-access-token: <token>
Privacy Notice
Your tokens are safe with us. We take privacy seriously:
- Your API tokens are never stored on our servers
- Tokens are only used to authenticate requests to the Autoform API on your behalf
- We do not log, track, or exploit your credentials in any way
- All communication is encrypted via HTTPS
Claude Code Integration (Hosted)
claude mcp add autoform --transport http --header "Authorization: Bearer your-token-here" https://autoform.fastmcp.app/mcp
Claude Desktop Integration (Hosted)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"autoform": {
"type": "streamable-http",
"url": "https://autoform.fastmcp.app/mcp",
"headers": {
"Authorization": "Bearer your-token-here"
}
}
}
}
Make.com Integration (Hosted)
You can use the Autoform MCP server in Make.com (formerly Integromat) using the MCP Client - Call a tool app:
- Add the MCP Client - Call a tool module to your scenario
- Create a new MCP server connection with these settings:
- URL:
https://autoform.fastmcp.app/mcp - API key / Access token: Your private access token from Slovensko.Digital Autoform
- URL:
- Select the
query_corporate_bodiestool and configure your query parameters
Self-Hosted Installation
From PyPI (recommended)
pip install autoform-mcp
Or using uvx to run directly without installation:
uvx autoform-mcp
From source
# Clone the repository
git clone https://github.com/alhafoudh/autoform-mcp.git
cd autoform-mcp
# Install dependencies
uv sync
Configuration
Set the AUTOFORM_PRIVATE_ACCESS_TOKEN environment variable with your API token from Slovensko.Digital.
export AUTOFORM_PRIVATE_ACCESS_TOKEN="your-token-here"
Usage
Run the MCP server (STDIO transport)
# If installed from PyPI
autoform-mcp
# Or using uvx
uvx autoform-mcp
# Or from source
uv run python autoform_mcp.py
Run with FastMCP CLI
uv run fastmcp run autoform_mcp.py
Inspect available tools
uv run fastmcp inspect autoform_mcp.py
Development mode with MCP Inspector
uv run fastmcp dev autoform_mcp.py
Available Tools
query_corporate_bodies
Search Slovak corporate bodies using a query expression.
Parameters:
query(string, required): Query expression in formatfield:valuelimit(integer, optional): Maximum number of results (1-20, default 5)active_only(boolean, optional): If true, return only active entities
Query format:
name:<value>- Search by company name prefixcin:<value>- Search by IČO (registration number) prefix
Examples:
query_corporate_bodies(query="name:Slovenská pošta") # Find companies starting with "Slovenská pošta"
query_corporate_bodies(query="cin:36631124") # Find company with IČO 36631124
query_corporate_bodies(query="cin:366", limit=10) # Find companies with IČO starting with "366"
query_corporate_bodies(query="name:Test", active_only=True) # Only active companies
Available Resources
autoform://api-info
Returns information about the Autoform API and this MCP server.
Claude Code Integration (Self-Hosted)
Using uvx (recommended)
Run the server directly from PyPI without installation:
claude mcp add autoform -e AUTOFORM_PRIVATE_ACCESS_TOKEN=your-token-here -- uvx autoform-mcp
Using local installation
If you've cloned the repository:
claude mcp add autoform -e AUTOFORM_PRIVATE_ACCESS_TOKEN=your-token-here -- uv run --directory /path/to/autoform-mcp python autoform_mcp.py
Claude Desktop Integration (Self-Hosted)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
Using uvx (recommended)
{
"mcpServers": {
"autoform": {
"command": "uvx",
"args": ["autoform-mcp"],
"env": {
"AUTOFORM_PRIVATE_ACCESS_TOKEN": "your-token-here"
}
}
}
}
Using local installation
{
"mcpServers": {
"autoform": {
"command": "uv",
"args": ["run", "--directory", "/path/to/autoform-mcp", "python", "autoform_mcp.py"],
"env": {
"AUTOFORM_PRIVATE_ACCESS_TOKEN": "your-token-here"
}
}
}
}
Development
Install dev dependencies
uv sync --all-extras
Run tests
uv run pytest -v
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autoform_mcp-0.1.8.tar.gz.
File metadata
- Download URL: autoform_mcp-0.1.8.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3dfdbf6d0fbbeacff35d1da8babf78ccee4964d62a4695ecdb5a345bcdcbce1
|
|
| MD5 |
994165f3ed0d832deffb3d394f1f5674
|
|
| BLAKE2b-256 |
2822a105d71d35c2230aa8c9c6347902617e50e8034dedcd8840fb033c484869
|
File details
Details for the file autoform_mcp-0.1.8-py3-none-any.whl.
File metadata
- Download URL: autoform_mcp-0.1.8-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdc9d039d8e46f875b285385fc022b00a4bc10131bfe035b8f134b0238b4ba6e
|
|
| MD5 |
a55a0a1253113fb08d9efd6cdf98e647
|
|
| BLAKE2b-256 |
7e92eac985d61dfb723ee5cbba869ab401cfecf5bfef7b53c384072d28001f94
|