lv-seon-mcp
v1.0.1
Published
MCP for SEON API
Readme
SEON MCP Server
This is a command-line tool that provides a Model-Context-Protocol (MCP) server for the SEON API.
Installation and Usage
You can run this tool directly using npx:
npx lv-seon-mcpConfiguration
The tool requires a SEON API key to be set as an environment variable.
Setting the API Key
You need to set the SEON_API_KEY environment variable to your SEON API key.
On macOS and Linux:
export SEON_API_KEY="YOUR_API_KEY"On Windows:
$env:SEON_API_KEY="YOUR_API_KEY"Replace "YOUR_API_KEY" with your actual SEON API key.
How it Works
This tool starts an MCP server that exposes the SEON API as a set of tools. It uses the standard input/output as the transport layer, which allows it to be used with other tools that support the Model-Context-Protocol.
When you run the tool with npx seon-mcp, it will start the server and wait for requests on stdin. The responses will be sent to stdout.
Claude Configuration
To use this tool with Claude, you can add the following configuration to your tools.json file:
"seon": {
"command": "npx",
"args": [
"lv-seon-mcp"
],
"env": {
"SEON_API_KEY": "YOUR_API_KEY"
}
}Replace "YOUR_API_KEY" with your actual SEON API key.
