- Home
- MCP servers
- Talon
Talon
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"trillium-talon_mcp": {
"command": "bun",
"args": [
"run",
"/path/to/talon_mcp/tools/mcp-server.ts"
]
}
}
}This MCP server for Talon enables you to surface important Talon information such as logs and access a Python REPL from your MCP client, enabling streamlined debugging and interactive exploration within your tooling environment.
How to use
You can interact with the Talon MCP server from any MCP client that supports standard MCP connections. Start the server in your environment using the same runtime command you use during development, then connect your client to the running MCP server to fetch logs, check Talon status, run Python code in the Talon REPL, or retrieve Talon configuration paths.
How to install
Prerequisites: ensure you have a runtime able to execute JavaScript/TypeScript projects (for example, Bun). You also need a shell to run commands.
Claude Code Configuration
{
"mcpServers": {
"talon_mcp": {
"command": "bun",
"args": ["run", "/path/to/talon_mcp/tools/mcp-server.ts"]
}
}
}
Development
bun test # Run tests
bun run format # Format code
bun run lint # Lint code
Notes
The server is started by running the MCP server script with the runtime you use for development. The Claude configuration example shows how to add the Talon MCP server to your Claude setup, using Bun to execute the mcp-server.ts script.
Available tools
talon_getLogs
Retrieve Talon log entries with optional filtering by log level or search term.
talon_getStatus
Check whether Talon is currently running.
talon_repl
Execute Python code inside the Talon REPL.
talon_getConfig
Fetch Talon's configuration paths, including home, logs, and user scripts.