Alpha Vantage Mcp
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP server for French e-invoicing (XP Z12-013). Manages invoices, validation and compliance.
{
"mcpServers": {
"io-github-cmendezs-mcp-facture-electronique-fr": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for French e-invoicing (XP Z12-013). Manages invoices, validation and compliance.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
An MCP (Model Context Protocol) server for performing accessibility audits on webpages using axe-core. Use the results in an agentic loop with your favorite AI assistants (Amp/Cline/Cursor/GH Copilot) and let them fix a11y issues for you!
An MCP server for Massive.com Financial Market Data
Allow parsing of object rest/spread
MCP Security Weekly
Get CVE alerts and security updates for io.github.cmendezs/mcp-facture-electronique-fr and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Serveur MCP Python exposant les APIs standardisées AFNOR XP Z12-013 pour la réforme de la facturation électronique française (entrée en vigueur le 1er septembre 2026). Ce projet permet aux agents IA (Claude, IDEs) d'interagir nativement avec l'écosystème des Plateformes Agréées (PA/PDP) en tant que Solution Compatible (SC).
English: This is a Model Context Protocol (MCP) server specifically designed for digital invoicing in France. It implements the XP Z12-013 API specifications to enable AI agents to manage, validate, and explore e-invoicing workflows within the French regulatory ecosystem (2024-2026 reform).
Le serveur se positionne comme une interface de communication intelligente entre votre agent IA et l'infrastructure technique de la réforme :
[ ERP / SI Entreprise ] <--> [ Serveur MCP ] <--> [ Plateforme Agréée (PA/PDP) ]
^ |
| v
[ Agent IA (Claude) ] <--- (Standard XP Z12-013)
| Service | Domaine | Norme | Outils MCP |
|---|---|---|---|
| Flow Service | Flux de factures & E-reporting | Annexe A – v1.1.0 | 5 outils |
| Directory Service | Annuaire centralisé (SIREN/SIRET) | Annexe B – v1.1.0 | 12 outils |
pip install mcp-facture-electronique-fr
Ou sans installation préalable avec uvx :
uvx mcp-facture-electronique-fr
# Cloner le dépôt
git clone https://github.com/cmendezs/mcp-facture-electronique-fr.git
cd mcp-facture-electronique-fr
# Créer l'environnement virtuel
python -m venv .venv
source .venv/bin/activate # Sur Windows : .venv\Scripts\activate
# Installation en mode éditable
pip install -e ".[dev]"
# Configuration initiale
cp .env.example .env
# Éditer .env avec vos credentials fournis par votre PA/PDP
Le serveur nécessite les variables suivantes pour s'authentifier auprès d'une Plateforme Agréée (PA) :
| Variable | Description |
|---|---|
PA_BASE_URL_FLOW | URL de base du Flow Service de la PA |
PA_BASE_URL_DIRECTORY | URL de base du Directory Service de la PA |
PA_CLIENT_ID | Client ID OAuth2 |
PA_CLIENT_SECRET | Client Secret OAuth2 |
PA_TOKEN_URL | URL du serveur d'authentification |
HTTP_TIMEOUT | Timeout des requêtes (défaut : 30s) |
Pour utiliser ce serveur avec Claude, ajoutez cette configuration dans votre fichier claude_desktop_config.json :
{
"mcpServers": {
"facture-electronique-fr": {
"command": "uvx",
"args": ["mcp-facture-electronique-fr"],
"env": {
"PA_BASE_URL_FLOW": "https://api.votre-pdp.fr/flow",
"PA_BASE_URL_DIRECTORY": "https://api.votre-pdp.fr/directory",
"PA_CLIENT_ID": "votre-id",
"PA_CLIENT_SECRET": "votre-secret",
"PA_TOKEN_URL": "https://auth.votre-pdp.fr/oauth/token"
}
}
}
}
Cursor supporte les serveurs MCP en stdio. Ajoutez la configuration dans :
~/.cursor/mcp.json.cursor/mcp.json{
"mcpServers": {
"facture-electronique-fr": {
"command": "uvx",
"args": ["mcp-facture-electronique-fr"],
"env": {
"PA_BASE_URL_FLOW": "https://api.votre-pdp.fr/flow",
"PA_BASE_URL_DIRECTORY": "https://api.votr
... [View full README on GitHub](https://github.com/cmendezs/mcp-facture-electronique-fr#readme)