smithery.yaml•1.25 kB
# Smithery configuration file
name: "mcp-think-tank"
description: "An MCP server that provides reasoning and knowledge graph capabilities for AI assistants"
version: "2.0.7"
displayName: "MCP Think Tank"
summary: "A knowledge graph-based reasoning tool with structured thinking and web research capabilities"
homepage: "https://github.com/flight505/mcp-think-tank"
repository: "https://github.com/flight505/mcp-think-tank"
keywords:
- reasoning
- knowledge-graph
- structured-thinking
- memory
- task-management
- exa
- web-research
- think
# Build configuration
build:
dockerfile: Dockerfile
dockerBuildPath: .
# Server configuration for Smithery compatibility
startCommand:
type: stdio
configSchema:
type: object
properties:
memoryPath:
type: string
description: "Path to memory.jsonl file for persistent knowledge graph storage"
default: "/tmp/memory.jsonl"
exaApiKey:
type: string
description: "API key for Exa web search functionality"
required: []
commandFunction: |-
config => ({
command: 'node',
args: ['dist/server.js'],
env: {
...config,
NODE_ENV: 'production',
MCP_TRANSPORT: 'stdio'
}
})