L
Lisp Development
Provides direct access to a running Common Lisp image for evaluating arbitrary Lisp expressions, returning multiple values, output streams, and detailed error b
Share:
About
Provides direct access to a running Common Lisp image for evaluating arbitrary Lisp expressions, returning multiple values, output streams, and detailed error backtraces.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Lisp Development.
- What is the Lisp Development MCP designed for?
- This MCP allows direct interaction with a running Common Lisp image. It facilitates evaluating Lisp expressions, capturing multiple return values, managing output streams, and providing detailed error backtraces for Common Lisp development.
- How can I evaluate Lisp expressions using this MCP?
- The MCP provides direct access to a Common Lisp image. You send arbitrary Lisp expressions to the MCP, and it returns the evaluated results, including multiple values and output from standard streams.
- Does the Lisp Development MCP require API keys or other credentials?
- Based on the provided information, the Lisp Development MCP uses 'none' for its authentication type, implying no API keys, OAuth, or similar credentials are required to use it.
- What kind of output can I expect from the Lisp Development MCP?
- The MCP returns multiple values from Lisp expressions, along with any output redirected to standard output streams. It also provides detailed error backtraces when exceptions occur during evaluation.
- Is there a limitation regarding the Lisp environment used by the MCP?
- The MCP provides access to 'a running Common Lisp image,' which means it depends on a pre-existing or externally managed Common Lisp environment. The specific Lisp implementation or version is not specified and is external to the MCP itself.
Install Lisp Development
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"lisp-development": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-lisp-development"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"lisp-development": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-lisp-development"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"lisp-development": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-lisp-development"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.